diff options
Diffstat (limited to 'debugWindow.go')
| -rw-r--r-- | debugWindow.go | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/debugWindow.go b/debugWindow.go index 3275cb1..a445d28 100644 --- a/debugWindow.go +++ b/debugWindow.go @@ -74,7 +74,7 @@ func (n *Node) DebugTab(title string) *Node { dropdownWindowWidgets(g1) }) - g2 := newN.NewGroup("node things") + g2 := newN.NewGroup("more things") g2.NewButton("Node.ListChildren(true)", func () { if (activeWidget == nil) { @@ -87,6 +87,20 @@ func (n *Node) DebugTab(title string) *Node { makeConc() }) + g2.NewButton("List Plugins", func () { + for _, aplug := range allPlugins { + log("Loaded plugin:", aplug.name, aplug.filename) + } + }) + + g2.NewButton("load plugin 'gocui'", func () { + StartS("gocui") + }) + + g2.NewButton("load plugin 'democui'", func () { + StartS("democui") + }) + return newN } |
