From c26165e4d1287259ba13497e92defffce63666ae Mon Sep 17 00:00:00 2001 From: alcexhim Date: Thu, 14 Aug 2014 13:53:30 -0400 Subject: [PATCH] Refresh the status bar when StatusBarState is updated --- .../MainWindow.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/MainWindow.cs b/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/MainWindow.cs index d6f2e1fd..480f79db 100644 --- a/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/MainWindow.cs +++ b/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/MainWindow.cs @@ -386,6 +386,7 @@ namespace UniversalEditor.UserInterface.WindowsForms if (theme != null) { theme.SetStatusBarState(AwesomeControls.Theming.BuiltinThemes.VisualStudio2012Theme.StatusBarState.Initial); + sbStatusBar.Refresh(); } return; } @@ -395,6 +396,7 @@ namespace UniversalEditor.UserInterface.WindowsForms if (theme != null) { theme.SetStatusBarState(AwesomeControls.Theming.BuiltinThemes.VisualStudio2012Theme.StatusBarState.SolutionLoaded); + sbStatusBar.Refresh(); } }