diff options
| author | Jeff Carr <[email protected]> | 2025-02-13 20:10:45 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-02-13 20:10:45 -0600 |
| commit | 88f6e8519b7f3e735c86b02ceb8fcb6bc9c8078d (patch) | |
| tree | eb1669fe82c52593719e74a2fa28082e808ddc20 /doGui.go | |
| parent | ce18af897a6aac7ce9d19af9520ce531cfad31df (diff) | |
stubbed in tables
Diffstat (limited to 'doGui.go')
| -rw-r--r-- | doGui.go | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -12,6 +12,7 @@ import ( "time" "go.wit.com/gui" + "go.wit.com/lib/debugger" "go.wit.com/lib/gadgets" "go.wit.com/lib/gui/shell" "go.wit.com/log" @@ -203,4 +204,8 @@ func drawWindow(win *gadgets.BasicWindow) { grid.NewButton("forge ConfigSave()", func() { me.forge.ConfigSave() }) + + grid.NewButton("debugger()", func() { + debugger.DebugWindow() + }) } |
