summaryrefslogtreecommitdiff
path: root/doGui.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-13 20:10:45 -0600
committerJeff Carr <[email protected]>2025-02-13 20:10:45 -0600
commit88f6e8519b7f3e735c86b02ceb8fcb6bc9c8078d (patch)
treeeb1669fe82c52593719e74a2fa28082e808ddc20 /doGui.go
parentce18af897a6aac7ce9d19af9520ce531cfad31df (diff)
stubbed in tables
Diffstat (limited to 'doGui.go')
-rw-r--r--doGui.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/doGui.go b/doGui.go
index b5fd9de..44f7399 100644
--- a/doGui.go
+++ b/doGui.go
@@ -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()
+ })
}