Increase error message fade from 1 to 5 secs

This commit is contained in:
Jeremy Wu
2019-08-21 08:37:50 +10:00
parent fe6d7d16c8
commit dedac39d99

View File

@@ -1,4 +1,4 @@
using System; using System;
using System.IO; using System.IO;
using System.Windows; using System.Windows;
using System.Windows.Forms; using System.Windows.Forms;
@@ -30,7 +30,7 @@ namespace Wox
// Create the fade out storyboard // Create the fade out storyboard
fadeOutStoryboard.Completed += fadeOutStoryboard_Completed; fadeOutStoryboard.Completed += fadeOutStoryboard_Completed;
DoubleAnimation fadeOutAnimation = new DoubleAnimation(dipWorkingArea.Y - Height, dipWorkingArea.Y, new Duration(TimeSpan.FromSeconds(1))) DoubleAnimation fadeOutAnimation = new DoubleAnimation(dipWorkingArea.Y - Height, dipWorkingArea.Y, new Duration(TimeSpan.FromSeconds(5)))
{ {
AccelerationRatio = 0.2 AccelerationRatio = 0.2
}; };