summaryrefslogtreecommitdiff
path: root/debugWindow.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2023-04-06 14:16:59 -0500
committerJeff Carr <[email protected]>2023-04-06 14:16:59 -0500
commit789beceb913cc6132931c0e245cad78d3ae7d9b8 (patch)
tree58b80351c471c6a2e50d30f78abd6817f2f25b00 /debugWindow.go
parentc16b8695332485071331bbcab924327cd2bab6e5 (diff)
andlabs: fix bug in flags and chan window create
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'debugWindow.go')
-rw-r--r--debugWindow.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/debugWindow.go b/debugWindow.go
index 7994e82..bed630a 100644
--- a/debugWindow.go
+++ b/debugWindow.go
@@ -46,16 +46,16 @@ func (n *Node) DebugTab(title string) *Node {
cb.Set(false)
gog.NewButton("Debug Flags", func () {
- newN.DebugFlags(makeTabs)
+ bugWin.DebugFlags(makeTabs)
})
gog.NewButton("Debug Widgets", func () {
DebugWidgetWindow(newN)
})
gog.NewButton("GO Language Internals", func () {
- newN.DebugGolangWindow(makeTabs)
+ bugWin.DebugGolangWindow(makeTabs)
})
gog.NewButton("GO Channels debug", func () {
- newN.DebugGoChannels(makeTabs)
+ bugWin.DebugGoChannels(makeTabs)
})
gog.NewLabel("Force Quit:")