summaryrefslogtreecommitdiff
path: root/toolkit/gocui/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2023-04-08 08:40:31 -0500
committerJeff Carr <[email protected]>2023-04-08 08:40:31 -0500
commit5d2f6e7fb241298eb15b1917c1947089a12247fe (patch)
tree0f67fc7c2955b40904a3ac4600cf82f53938398b /toolkit/gocui/main.go
parent0f3074ab5d606822ae0d170da84507d6e24471e6 (diff)
gocui: keep deprecating non-gochannel code
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'toolkit/gocui/main.go')
-rw-r--r--toolkit/gocui/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/gocui/main.go b/toolkit/gocui/main.go
index 4dd7112..ed9670a 100644
--- a/toolkit/gocui/main.go
+++ b/toolkit/gocui/main.go
@@ -49,7 +49,7 @@ func catchActionChannel() {
select {
case a := <-me.pluginChan:
log(logNow, "makeCallback() SELECT widget id =", a.WidgetId, a.Name)
- Action(&a)
+ action(&a)
sleep(.1)
}
}