[Feature] Faster fading (#178), version 1.0.17.46

This commit is contained in:
Markus Hofknecht 2021-05-28 22:23:59 +02:00
parent bc89f2403a
commit f4338c1c50

View file

@ -10,7 +10,7 @@ namespace SystemTrayMenu.UserInterface
public class Fading : IDisposable
{
private const int Interval60FPS = 16; // 60fps=>1s/60fps=~16.6ms
private const int Interval60FPS = 10; // 100fps=>1s/100fps=~10ms
private const double StepIn = 0.20;
private const double StepOut = 0.10;