summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2019-05-08 14:06:29 -0700
committerJeff Carr <[email protected]>2019-05-08 14:06:29 -0700
commitd977b247307dffc376e5d83620c4985192748c3f (patch)
tree1e1766b726adc092a62cbc2973bc5524bd87eed0
parent9f604f720b6deb66ca595e5895e2d1889fa86f66 (diff)
Start with a completely empty page
Signed-off-by: Jeff Carr <[email protected]>
-rw-r--r--gui.go8
1 files 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() {