Swap icons of PerformanceOverlay and PowerControl

This commit is contained in:
Kamil Trzciński 2022-11-16 22:02:57 +01:00
parent c223a11d57
commit e4914dbffb
15 changed files with 28 additions and 26 deletions

View file

@ -78,7 +78,7 @@ namespace PowerControl
exitItem.Click += ExitItem_Click;
notifyIcon = new System.Windows.Forms.NotifyIcon(components);
notifyIcon.Icon = Resources.poll;
notifyIcon.Icon = Resources.traffic_light_outline;
notifyIcon.Text = TitleWithVersion;
notifyIcon.Visible = true;
notifyIcon.ContextMenuStrip = contextMenu;
@ -194,12 +194,12 @@ namespace PowerControl
try
{
notifyIcon.Text = TitleWithVersion + ". RTSS Version: " + OSD.Version;
notifyIcon.Icon = Resources.poll;
notifyIcon.Icon = Resources.traffic_light_outline;
}
catch
{
notifyIcon.Text = TitleWithVersion + ". RTSS Not Available.";
notifyIcon.Icon = Resources.poll_red;
notifyIcon.Icon = Resources.traffic_light_outline_red;
}
updateOSD();