From 8b3efa584c7c97bdaf3f51888881342d96f36ee6 Mon Sep 17 00:00:00 2001 From: Jim Norman Date: Wed, 12 Oct 2005 15:25:27 +0000 Subject: [PATCH] Fix tray image location --- c_trayapp/TrayCasa.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); }