diff --git a/c_trayapp/TrayCasa.cs b/c_trayapp/TrayCasa.cs index e0c42b0b..db72f8bd 100644 --- a/c_trayapp/TrayCasa.cs +++ b/c_trayapp/TrayCasa.cs @@ -65,7 +65,7 @@ public class TrayCasa notifyIcon = new System.Windows.Forms.NotifyIcon(); try { - s = File.OpenRead("notify1.ico"); + s = File.OpenRead("../images/notify1.ico"); m_iconNormal = new System.Drawing.Icon(s); notifyIcon.Icon = m_iconNormal; } @@ -88,7 +88,7 @@ public class TrayCasa try { - s = File.OpenRead("notifyLocked.ico"); + s = File.OpenRead("../images/notifyLocked.ico"); m_iconLocked = new System.Drawing.Icon(s); }