From a763d3fa26c5902374483bbbf87bcf4925933acb Mon Sep 17 00:00:00 2001 From: jvyden Date: Mon, 18 Oct 2021 13:32:54 -0400 Subject: [PATCH] Automatically determine height Fixes large buttons on MacOS and Windows. --- UnionPatcher.Gui/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UnionPatcher.Gui/MainForm.cs b/UnionPatcher.Gui/MainForm.cs index f83aed1..8501223 100644 --- a/UnionPatcher.Gui/MainForm.cs +++ b/UnionPatcher.Gui/MainForm.cs @@ -101,7 +101,7 @@ namespace UnionPatcher.Gui { public MainForm() { this.Title = "Union Patcher"; - this.ClientSize = new Size(500, 160); + this.ClientSize = new Size(500, -1); this.Content = new TableLayout { Spacing = new Size(5,5), Padding = new Padding(10, 10, 10, 10),