uwt:68f783 Remove unnecessary and confusing Title property in favor of inherited Text property

This commit is contained in:
Michael Becker 2019-07-23 23:25:41 -04:00
parent d1ce7db80f
commit ae8c9e25bb

View File

@ -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)
{