From afd8ef84c13e0a8fcb9ef88fdfb9a53adb3d6da3 Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Sat, 25 Jan 2020 03:27:45 -0500 Subject: [PATCH] manually specify window start position for popup (this should be in a Popup class...) --- .../Dialogs/GenericBrowserPopup.Designer.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CSharp/Libraries/UniversalEditor.UserInterface/Dialogs/GenericBrowserPopup.Designer.cs b/CSharp/Libraries/UniversalEditor.UserInterface/Dialogs/GenericBrowserPopup.Designer.cs index a4eaf380..d5628f2e 100644 --- a/CSharp/Libraries/UniversalEditor.UserInterface/Dialogs/GenericBrowserPopup.Designer.cs +++ b/CSharp/Libraries/UniversalEditor.UserInterface/Dialogs/GenericBrowserPopup.Designer.cs @@ -74,6 +74,8 @@ namespace UniversalEditor.UserInterface.Dialogs this.Controls.Add(this.lv, new BoxLayout.Constraints(true, true)); this.MinimumSize = new Dimension2D (300, 200); + + StartPosition = WindowStartPosition.Manual; } }