diff options
| author | Jeff Carr <[email protected]> | 2025-02-13 22:28:46 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-02-13 22:28:46 -0600 |
| commit | 74de0ac89d0ebae039a11685e2a7d06fd656ecec (patch) | |
| tree | 3b96b50b98b85b7302c5c4cdeedbc2094c4cb936 /init.go | |
| parent | b97dace40e481e672d438f597b3ecac29ec9eb40 (diff) | |
debugging init()v0.22.9
Diffstat (limited to 'init.go')
| -rw-r--r-- | init.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -9,6 +9,7 @@ import ( "os" "runtime/debug" "sync" + "time" "go.wit.com/log" "go.wit.com/widget" @@ -36,6 +37,8 @@ func (me *TreeInfo) catchActionChannel() { case a := <-me.pluginChan: log.Verbose("catchActionChannel() on ", a.WidgetId, a.WidgetType, a.ProgName) muAction.Lock() + me.WaitOK() + time.Sleep(10 * time.Millisecond) me.doAction(a) muAction.Unlock() } |
