diff options
| author | Jeff Carr <[email protected]> | 2019-06-01 21:15:55 -0700 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2019-06-01 21:15:55 -0700 |
| commit | fd4af0e0dbdd4d8875e2d9dfb4cda84261cacaea (patch) | |
| tree | dfccecaafc51ad1eba8650f4e9791ce0d0d3b912 /misc.go | |
| parent | 273a9eccf74f4aaaeccffa0c7eaebd534581a9cb (diff) | |
spash screen works again
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'misc.go')
| -rw-r--r-- | misc.go | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -146,13 +146,11 @@ func InitTabWindow(gw *GuiWindow) { // create a 'fake' button entry for the mouse clicks var newBM GuiButton newBM.Action = "QUIT" -// newBM.W = gw.UiWindow newBM.GW = gw Data.AllButtons = append(Data.AllButtons, &newBM) gw.UiWindow.OnClosing(func(*ui.Window) bool { log.Println("InitTabWindow() OnClosing() THIS WINDOW IS CLOSING gw=", gw) - // mouseClick(&newBM) ui.Quit() return true }) @@ -163,12 +161,12 @@ func InitTabWindow(gw *GuiWindow) { log.Println("InitTabWindow() gw =", gw) - abox := gw.MakeWindow(gw) + gw.MakeWindow(gw) - gw.UiTab.Append("WIT Splash", abox.UiBox) - gw.UiTab.SetMargined(0, true) +// abox := gw.MakeWindow(gw) +// gw.UiTab.Append("WIT Splash", abox.UiBox) +// gw.UiTab.SetMargined(0, true) - Data.State = "splash" gw.UiWindow.Show() } |
