[BUG] Fix refresh when scroll with mousewheel (#180), version 1.0.17.50

This commit is contained in:
Markus Hofknecht 2021-05-29 09:37:29 +02:00
parent 366acc27ad
commit 27a018e5d0
2 changed files with 4 additions and 2 deletions

View file

@ -39,5 +39,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.17.49")]
[assembly: AssemblyFileVersion("1.0.17.49")]
[assembly: AssemblyVersion("1.0.17.50")]
[assembly: AssemblyFileVersion("1.0.17.50")]

View file

@ -571,6 +571,8 @@ namespace SystemTrayMenu.UserInterface
}
}
dgv.Invalidate();
MouseWheel?.Invoke();
}