Fix tray image location

This commit is contained in:
Jim Norman 2005-10-12 15:25:27 +00:00
parent efe0a5e13c
commit 8b3efa584c

View File

@ -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);
}