summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--action.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/action.go b/action.go
index c7284f1..0aa075c 100644
--- a/action.go
+++ b/action.go
@@ -95,8 +95,8 @@ func sendActionToPlugin(a *widget.Action) {
// safe (thread safe, correct locking, etc). I think it is. Things seem stable
// sync.Mutex() locks don't appear to work somehow in a way I don't understand
// it's probably due to []string use. use map[] instead
- // log.Sleep(.000001) // this delay makes it so SetText() works on initial widget creation
- log.Sleep(.002) // this delay makes it so SetText() works on initial widget creation
+ log.Sleep(.000001) // this delay makes it so SetText() works on initial widget creation
+ // log.Sleep(.002) // this delay makes it so SetText() works on initial widget creation
}
}
}