summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-18 01:49:21 -0600
committerJeff Carr <[email protected]>2024-01-18 01:49:21 -0600
commit4df2b5ecb8da632aa3afd093c777a2b690909874 (patch)
treedd3ac77205846802484d1d8cadd8bfa3fee426b0
parentaff82aa4ea8f9e7dcc549afec9218154e1d9c7bd (diff)
finally able to lower the delay
Signed-off-by: Jeff Carr <[email protected]>
-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
}
}
}