summaryrefslogtreecommitdiff
path: root/init.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-18 04:08:11 -0600
committerJeff Carr <[email protected]>2024-01-18 04:08:11 -0600
commita78eadea024c2b283b45f1711aeda39d60deab22 (patch)
tree9bc410a7fa97ffa03fcb918efe8b477f864c2865 /init.go
parent3ea3dd10db0e728240fc659bdd33c622d33e46b4 (diff)
pathsv0.0.2
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'init.go')
-rw-r--r--init.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/init.go b/init.go
index 55e434d..03bbe4f 100644
--- a/init.go
+++ b/init.go
@@ -1,11 +1,11 @@
package tree
import (
- "sync"
"errors"
+ "sync"
"go.wit.com/log"
- "go.wit.com/lib/widget"
+ "go.wit.com/widget"
)
var muAction sync.Mutex
@@ -29,7 +29,7 @@ func (me *TreeInfo) catchActionChannel() {
log.Info("catchActionChannel() START")
for {
log.Info("catchActionChannel() for loop")
- select {
+ select {
case a := <-me.pluginChan:
log.Info("catchActionChannel() SELECT widget id =", a.WidgetId, a.ProgName)
log.Warn("catchActionChannel() STUFF", a.WidgetId, a.ActionType, a.WidgetType)