Skip to content

Commit

Permalink
Windows: increased fade duration by 100ms
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-luberda committed Jan 23, 2016
1 parent eddcfe7 commit 7dcacc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/FFImageLoading.Windows/TaskParameterExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public static IScheduledWork Into(this TaskParameter parameters, Image imageView
{
// fade animation
DoubleAnimation fade = new DoubleAnimation();
fade.Duration = TimeSpan.FromMilliseconds(400);
fade.Duration = TimeSpan.FromMilliseconds(500);
fade.From = 0f;
fade.To = 1f;
fade.EasingFunction = new CubicEase() { EasingMode = EasingMode.EaseInOut };
Expand Down

0 comments on commit 7dcacc9

Please sign in to comment.