diff options
| author | Jeff Carr <[email protected]> | 2023-04-06 14:16:59 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-04-06 14:16:59 -0500 |
| commit | 789beceb913cc6132931c0e245cad78d3ae7d9b8 (patch) | |
| tree | 58b80351c471c6a2e50d30f78abd6817f2f25b00 /main.go | |
| parent | c16b8695332485071331bbcab924327cd2bab6e5 (diff) | |
andlabs: fix bug in flags and chan window create
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -104,6 +104,12 @@ func Start() *Node { return Config.rootNode } +func (n *Node) LoadPlugin(name string) bool { + StartS(name) + Redraw(name) + return true +} + func StartS(name string) *Node { log(logInfo, "Start() Main(f) for name =", name) if (LoadToolkit(name) == false) { |
