summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-20 21:22:43 -0600
committerJeff Carr <[email protected]>2024-01-20 21:22:43 -0600
commit99b87970040927e355a19a6c9c34feb57d45ded7 (patch)
treed71444a77d8cf270a10e3fb75443078e8901740f /main.go
parent826ff283984e310a27401514b2db10b66e49e87c (diff)
add basic entry widget for testingv0.0.2
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'main.go')
-rw-r--r--main.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/main.go b/main.go
index 45f692f..c30af42 100644
--- a/main.go
+++ b/main.go
@@ -76,6 +76,11 @@ func helloworld() {
log.Info("basic window socks =", section2.socks.String())
})
+ group.NewButton("show animal", func() {
+ log.Info("main window animal =", section1.animal.String())
+ log.Info("basic window animal =", section2.animal.String())
+ })
+
group = box.NewGroup("debug")
group.NewButton("debugger", func() {
debugger.DebugWindow()