From ae8c9e25bb63c431bbd313e07fb917184325a3dd Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Tue, 23 Jul 2019 23:25:41 -0400 Subject: [PATCH] uwt:68f783 Remove unnecessary and confusing Title property in favor of inherited Text property --- CSharp/Libraries/UniversalEditor.UserInterface/MainWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CSharp/Libraries/UniversalEditor.UserInterface/MainWindow.cs b/CSharp/Libraries/UniversalEditor.UserInterface/MainWindow.cs index 2c93246a..598d22c0 100644 --- a/CSharp/Libraries/UniversalEditor.UserInterface/MainWindow.cs +++ b/CSharp/Libraries/UniversalEditor.UserInterface/MainWindow.cs @@ -568,7 +568,7 @@ namespace UniversalEditor.UserInterface FileDialog dlg = new FileDialog(); dlg.FileNameFilters.Add("Project files", "*.ueproj"); dlg.FileNameFilters.Add("Solution files", "*.uesln"); - dlg.Title = "Open Project or Solution"; + dlg.Text = "Open Project or Solution"; if (dlg.ShowDialog() == DialogResult.OK) {