From 62df74272574ca24d2cb92380c97080c4e213581 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Wed, 22 May 2019 13:26:38 -0700 Subject: [PATCH] show window at the end (for mswindows?) Signed-off-by: Jeff Carr --- test3/main.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test3/main.go b/test3/main.go index 2a91120..d4529dd 100644 --- a/test3/main.go +++ b/test3/main.go @@ -27,8 +27,6 @@ func setupUI() { mainwin.SetChild(tab) mainwin.SetMargined(true) - mainwin.Show() - vbox := ui.NewVerticalBox() vbox.SetPadded(true) @@ -36,4 +34,7 @@ func setupUI() { tab.Append("WIT Splash", vbox) tab.SetMargined(0, true) + + mainwin.Show() + }