summaryrefslogtreecommitdiff
path: root/init.go
diff options
context:
space:
mode:
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)