diff options
| author | Jeff Carr <[email protected]> | 2025-01-08 04:07:33 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-08 04:07:33 -0600 |
| commit | 9d97b946168f7b285c9b725c93f1ef69b73ef785 (patch) | |
| tree | dcc5642e8e004b2481ec71e86d5cdc6fe11bb3ee /doGui.go | |
| parent | 8e2a557b25a82ab6a61fa71644b6f78d7c9de77f (diff) | |
tracked down 'dirty' not showing upv0.22.36
Diffstat (limited to 'doGui.go')
| -rw-r--r-- | doGui.go | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -4,14 +4,29 @@ package main import ( "go.wit.com/gui" + "go.wit.com/lib/debugger" "go.wit.com/lib/gadgets" "go.wit.com/log" ) +func debug() { + log.Info("cmd line --debugger == true") + go func() { + log.Sleep(3) + log.Info("cmd line --debugger == true") + log.Info("cmd line --debugger == true") + log.Info("cmd line --debugger == true") + log.Info("cmd line --debugger == true") + debugger.DebugWindow() + }() +} + func doGui() { me.myGui = gui.New() me.myGui.Default() + // debug() + me.mainWindow = gadgets.RawBasicWindow("Forge: (this doesn't work yet)") me.mainWindow.Make() me.mainWindow.Show() |
