summaryrefslogtreecommitdiff
path: root/debugWindow.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2023-03-24 20:14:18 -0500
committerJeff Carr <[email protected]>2023-03-24 20:14:18 -0500
commit6f91f5e080e06cdc0f34b13d23e5fd16ea37259a (patch)
tree7037a36829c644dccc7cb78ee6f87f87f88aed21 /debugWindow.go
parentd4787a1ebdd08359746516dbb72f1feaf95be5b6 (diff)
starting to try safe chan and goroutines
fix tab title's right before attempting to add chan goroutines removed "where" widget pointer box added to tab experiement with log as it's own repo Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'debugWindow.go')
-rw-r--r--debugWindow.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/debugWindow.go b/debugWindow.go
index 2c85407..3275cb1 100644
--- a/debugWindow.go
+++ b/debugWindow.go
@@ -83,6 +83,10 @@ func (n *Node) DebugTab(title string) *Node {
activeWidget.ListChildren(true)
})
+ g2.NewButton("test conc", func () {
+ makeConc()
+ })
+
return newN
}