From 47a4119d161a394961c4c678a5adf7e597339422 Mon Sep 17 00:00:00 2001 From: BoppreH Date: Mon, 9 Jun 2014 01:24:12 -0300 Subject: [PATCH] Increase starting height The default values result in a overlapping controls in Windows. By adding 20 extra pixels to the starting height the controls start at a more correct position. --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index f90c701..33f4e8a 100644 --- a/main.go +++ b/main.go @@ -70,7 +70,7 @@ func myMain() { status.SetText("") } - w = ui.NewWindow("wakeup", 400, 100) + w = ui.NewWindow("wakeup", 400, 120) ui.AppQuit = w.Closing // treat application close as main window close cmdbox := ui.NewLineEdit(defCmdLine) timebox := ui.NewLineEdit(defTime)