diff options
| author | Jeff Carr <[email protected]> | 2019-05-08 14:06:29 -0700 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2019-05-08 14:06:29 -0700 |
| commit | d977b247307dffc376e5d83620c4985192748c3f (patch) | |
| tree | 1e1766b726adc092a62cbc2973bc5524bd87eed0 | |
| parent | 9f604f720b6deb66ca595e5895e2d1889fa86f66 (diff) | |
Start with a completely empty page
Signed-off-by: Jeff Carr <[email protected]>
| -rw-r--r-- | gui.go | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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() { |
