mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-04-06 23:03:59 +00:00
Change notify icon to white for FanControl
This commit is contained in:
parent
c4fd544cc2
commit
e3f3f63270
6 changed files with 213 additions and 13 deletions
|
|
@ -34,6 +34,7 @@ namespace FanControl
|
|||
|
||||
notifyIcon.Text = Text;
|
||||
notifyIcon.Visible = true;
|
||||
notifyIcon.Icon = WindowsDarkMode.IsDarkModeEnabled ? Resources.fan_white : Resources.fan;
|
||||
|
||||
TopMost = Settings.Default.AlwaysOnTop;
|
||||
toolStripMenuItemAlwaysOnTop.Checked = TopMost;
|
||||
|
|
@ -162,6 +163,8 @@ namespace FanControl
|
|||
|
||||
private void propertyGridUpdateTimer_Tick(object sender, EventArgs e)
|
||||
{
|
||||
notifyIcon.Icon = WindowsDarkMode.IsDarkModeEnabled ? Resources.fan_white : Resources.fan;
|
||||
|
||||
if (!Visible)
|
||||
return;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue