From d977b247307dffc376e5d83620c4985192748c3f Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Wed, 8 May 2019 14:06:29 -0700 Subject: [PATCH] Start with a completely empty page Signed-off-by: Jeff Carr --- gui.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gui.go b/gui.go index eeeef92..d359a8e 100644 --- a/gui.go +++ b/gui.go @@ -224,9 +224,9 @@ func setupUI() { mainwin.SetChild(maintab) mainwin.SetMargined(true) - maintab.Append("List examples", makeNumbersPage()) + // maintab.Append("List examples", makeNumbersPage()) tabcount = 0 - maintab.SetMargined(tabcount, true) + // maintab.SetMargined(tabcount, true) /* maintab.Append("Choosers examples", makeDataChoosersPage()) @@ -243,8 +243,8 @@ func setupUI() { func AddChoosersDemo() { maintab.Append("Choosers examples", makeDataChoosersPage()) - tabcount += 1 maintab.SetMargined(tabcount, true) + tabcount += 1 } // This hangs on GTK @@ -287,9 +287,9 @@ func AddTableTab(name string, rowcount int, row1name string) { appendTextColumn (mh, table, 8, "jwc8col") table.AppendButtonColumn("button9", 9, ui.TableModelColumnAlwaysEditable) - tabcount += 1 maintab.Append(name, table) maintab.SetMargined(tabcount, true) + tabcount += 1 } func DoGUI() {