We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From time to time, the tray icon becomes blurry:
After clicking on it, the icon returns to normal:
The text was updated successfully, but these errors were encountered:
Found this: https://social.msdn.microsoft.com/Forums/vstudio/en-US/5719a514-1438-434d-ba22-fc9f6bd4a26b/notifyicons-icon-is-sometimes-blurry?forum=csharpgeneral
So maybe changing private static readonly Icon SystemTrayMenu = Properties.Resources.SystemTrayMenu; to private static readonly Icon SystemTrayMenu = new Icon(Properties.Resources.SystemTrayMenu, SystemInformation.SmallIconSize);
private static readonly Icon SystemTrayMenu = Properties.Resources.SystemTrayMenu;
private static readonly Icon SystemTrayMenu = new Icon(Properties.Resources.SystemTrayMenu, SystemInformation.SmallIconSize);
in Config.cs will do the trick?
Sorry, something went wrong.
[BUG] Blurry tray icon (#462), version 1.3.1.8
87dbd64
@verdammt89x Hey Mario , thank you for the hint! yes your code change improves it! see here compare at my side
works great!
committed it for you and added it to thx section in readme and about
No branches or pull requests
From time to time, the tray icon becomes blurry:
After clicking on it, the icon returns to normal:
The text was updated successfully, but these errors were encountered: