From 6f3e0f5162843b0df16f37a9fee8d4a59b4a44ec Mon Sep 17 00:00:00 2001 From: Yeechan Lu Date: Tue, 28 Jan 2014 21:24:14 +0800 Subject: [PATCH] Fixed: File not found - ico.png --- WinAlfred/Msg.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WinAlfred/Msg.xaml.cs b/WinAlfred/Msg.xaml.cs index 5959f72862..981a3b1074 100644 --- a/WinAlfred/Msg.xaml.cs +++ b/WinAlfred/Msg.xaml.cs @@ -65,7 +65,7 @@ namespace WinAlfred tbSubTitle.Text = subTitle; if (!File.Exists(icopath)) { - icopath = AppDomain.CurrentDomain.BaseDirectory + "Images\\ico.png"; + icopath = AppDomain.CurrentDomain.BaseDirectory + "Images\\app.png"; } imgIco.Source = new BitmapImage(new Uri(icopath)); Show();