diff --git a/Debugger/ILSpy.Debugger/Services/ImageService/ImageService.cs b/Debugger/ILSpy.Debugger/Services/ImageService/ImageService.cs index 7a5fc14a1..a71f1ad67 100644 --- a/Debugger/ILSpy.Debugger/Services/ImageService/ImageService.cs +++ b/Debugger/ILSpy.Debugger/Services/ImageService/ImageService.cs @@ -27,7 +27,7 @@ namespace ICSharpCode.ILSpy.Debugger.Services static BitmapImage LoadBitmap(string name) { try { - BitmapImage image = new BitmapImage(new Uri("pack://application:,,,/ILSpy.Debugger;component/Images/" + name + ".png")); + BitmapImage image = new BitmapImage(new Uri("pack://application:,,,/ILSpy.Debugger.Plugin;component/Images/" + name + ".png")); if (image == null) return null; image.Freeze(); diff --git a/ILSpy/MainWindow.xaml b/ILSpy/MainWindow.xaml index 4fbe51a1a..d7db5dcb6 100644 --- a/ILSpy/MainWindow.xaml +++ b/ILSpy/MainWindow.xaml @@ -78,12 +78,12 @@ SelectedItem="{Binding FilterSettings.Language}"/> - + diff --git a/ILSpy/MainWindow.xaml.cs b/ILSpy/MainWindow.xaml.cs index 4f2f17ab3..e92b5c25a 100644 --- a/ILSpy/MainWindow.xaml.cs +++ b/ILSpy/MainWindow.xaml.cs @@ -706,6 +706,8 @@ namespace ICSharpCode.ILSpy public void SetStatus(string status, Brush foreground) { + if (this.statusBar.Visibility == Visibility.Collapsed) + this.statusBar.Visibility = Visibility.Visible; this.StatusLabel.Foreground = foreground; this.StatusLabel.Text = status; }