summaryrefslogtreecommitdiff
path: root/gui-example/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2021-10-07 01:37:37 -0500
committerJeff Carr <[email protected]>2021-10-07 01:37:37 -0500
commit3252ed35f22b438c4991ee6e6d1714e884a1e41f (patch)
treeed25cf741c027e84ea3a31a29e772a0578670228 /gui-example/main.go
parent36e2c6d2e3c266f32325985e98c3776755fdd511 (diff)
DEBUG: add more debugging options
Diffstat (limited to 'gui-example/main.go')
-rw-r--r--gui-example/main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui-example/main.go b/gui-example/main.go
index 1ff286d..5f34f98 100644
--- a/gui-example/main.go
+++ b/gui-example/main.go
@@ -34,8 +34,8 @@ func watchGUI() {
for {
log.Println("Waiting for customExit()", i)
i += 1
- time.Sleep(time.Second)
- if i == 3 {
+ time.Sleep(3 * time.Second)
+ if i == 2 {
log.Println("Sending ExampleWindow to gui.Queue()")
gui.Queue(gui.DebugWindow)
}