Skip to content

Commit c3a8ca2

Browse files
committed
Widening a bit the MM Menu
1 parent 0c73b09 commit c3a8ca2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Source/ModuleManager/GUI/Menu.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ private void Show()
5656
"",
5757
"ModuleManager",
5858
HighLogic.UISkin,
59-
new Rect(0.5f, 0.5f, 150f, 60f),
59+
new Rect(0.5f, 0.5f, 220f, 60f),
6060
new DialogGUIFlexibleSpace(),
6161
new DialogGUIVerticalLayout(
6262
new DialogGUIFlexibleSpace(),
@@ -66,21 +66,21 @@ private void Show()
6666
{
6767
this.parent.StartCoroutine(this.parent.DataBaseReloadWithMM(false));
6868
this.Dismiss();
69-
}, 140.0f, 30.0f, false),
69+
}, 200.0f, 30.0f, false),
7070
#endif
7171
new DialogGUIButton("Quick Reload Database",
7272
delegate
7373
{
7474
this.parent.StartCoroutine(this.parent.QuickDataBaseReloadWithMM());
7575
this.Dismiss();
76-
}, 140.0f, 30.0f, false),
76+
}, 200.0f, 30.0f, false),
7777
new DialogGUIButton("Dump Database to Files",
7878
delegate
7979
{
8080
this.parent.StartCoroutine(this.parent.DumpDataBaseToFiles());
8181
this.Dismiss();
82-
}, 140.0f, 30.0f, false),
83-
new DialogGUIButton("Close", () => { this.Dismiss(); } , 140.0f, 30.0f, false)
82+
}, 200.0f, 30.0f, false),
83+
new DialogGUIButton("Close", () => { this.Dismiss(); } , 200.0f, 30.0f, false)
8484
)),
8585
false,
8686
HighLogic.UISkin);

0 commit comments

Comments
 (0)