diff options
| author | Jeff Carr <[email protected]> | 2023-04-28 07:29:46 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-04-28 07:29:46 -0500 |
| commit | 3516434fbf56ada3724d4c07bf31bb71d0fe5469 (patch) | |
| tree | 450fe7cc7c12804ed81073add6d61c85ac8eed34 /debugWindow.go | |
| parent | a1deb9845593e211a1ce6fe4a7f88bbe5acd9981 (diff) | |
allow passing of embed plugin files
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'debugWindow.go')
| -rw-r--r-- | debugWindow.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/debugWindow.go b/debugWindow.go index 01273c8..0c27a3f 100644 --- a/debugWindow.go +++ b/debugWindow.go @@ -64,6 +64,10 @@ func (n *Node) DebugTab(title string) *Node { //////////////////////// window debugging things ////////////////////////////////// g1 = newN.NewGroup("list things") + g1.NewButton("List toolkits", func () { + dropdownWindow(g1) + Config.rootNode.ListToolkits() + }) g1.NewButton("List Windows", func () { dropdownWindow(g1) }) |
