summaryrefslogtreecommitdiff
path: root/help.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-08 14:24:43 -0600
committerJeff Carr <[email protected]>2025-02-08 14:24:43 -0600
commit58cb7f3d2d8cd102081ba545081f20bf0d6fd211 (patch)
tree5b1cb97e6c4376d2a64e1748e3ab632d460baf03 /help.go
parent53eb14ccbde494a61c3b1ef6dc03edd7dd0b507e (diff)
still can't remove "msg" create in mouseMove()
Diffstat (limited to 'help.go')
-rw-r--r--help.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/help.go b/help.go
index 8ae7d7b..067d841 100644
--- a/help.go
+++ b/help.go
@@ -97,6 +97,12 @@ func showHelp() error {
me.clock.tk.Hide()
me.clock.tk.Show()
}
+ if me.stdout.tk == nil {
+ makeOutputWidget(me.baseGui, "made this in showHelp()")
+ msg := fmt.Sprintf("test to stdout from in showHelp() %d\n", me.ecount)
+ me.stdout.Write([]byte(msg))
+ log.Log(NOW, "log.log(NOW) test")
+ }
return nil
}