From a00d4015fe125114660eff015976371e59a43c5b Mon Sep 17 00:00:00 2001 From: alcexhim Date: Tue, 22 Jul 2014 15:29:00 -0400 Subject: [PATCH] Pull in the window title from the current language --- .../MainWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 6b15fd9f..88fff3d4 100644 --- a/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/MainWindow.cs +++ b/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/MainWindow.cs @@ -53,7 +53,7 @@ namespace UniversalEditor.UserInterface.WindowsForms pnlSolutionExplorer.ParentWindow = this; this.Icon = LocalConfiguration.MainIcon; - this.Text = Engine.CurrentEngine.DefaultLanguage.GetStringTableEntry("ApplicationName", "Universal Editor Platform"); + this.Text = Engine.CurrentEngine.DefaultLanguage.GetStringTableEntry("ApplicationTitle", "Universal Editor Platform"); mnuContextDocumentTypeDataFormat.Font = new Font(SystemFonts.MenuFont, FontStyle.Bold);