summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2021-10-25 09:07:23 -0500
committerJeff Carr <[email protected]>2021-10-25 09:07:23 -0500
commit6ebcfddf859306a5b41acb1a7c8856c351b556ee (patch)
treea3cfad3add551416a8162f389e17b95ee7da51ea /main.go
parent7a302348c8d82aca893311278218ab192c3e05e9 (diff)
NODE: more rabbits
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/main.go b/main.go
index 2da4053..70e0e65 100644
--- a/main.go
+++ b/main.go
@@ -12,7 +12,7 @@ func Main(f func()) {
ui.Main(f)
}
-// Other goroutines must use this
+// Other goroutines must use this to access the GUI
//
// You can not acess / process the GUI thread directly from
// other goroutines. This is due to the nature of how
@@ -23,6 +23,7 @@ func Queue(f func()) {
ui.QueueMain(f)
}
+/*
func ExampleWindow() {
log.Println("START gui.ExampleWindow()")
@@ -30,3 +31,4 @@ func ExampleWindow() {
node := NewWindow()
node.AddDebugTab("jcarr Debug")
}
+*/