diff options
| author | Jeff Carr <[email protected]> | 2024-02-09 09:29:55 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-02-09 09:29:55 -0600 |
| commit | c7ea23ddb6559030d0be98bff090bf919b0c4265 (patch) | |
| tree | 8c2cbd57709c683914e0ffd639e86e07950529a6 /plugin.go | |
| parent | 8317fa28e2da1d22d7248874ebc794189faf23b5 (diff) | |
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'plugin.go')
| -rw-r--r-- | plugin.go | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -24,6 +24,10 @@ type aplug struct { filename string plug *plugin.Plugin + // set this to true if the plugin dies + // TODO: remove the plugin from the pool + dead bool + // this tells the toolkit plugin how to send events // back here // @@ -269,6 +273,7 @@ func (n *Node) LoadToolkit(name string) *Node { if plug == nil { return n } + plug.dead = false log.Log(PLUG, "LoadToolkit() sending Toolkit Init action to the plugin channel") var a widget.Action |
