diff options
| author | Jeff Carr <[email protected]> | 2021-10-07 21:56:16 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2021-10-07 21:56:16 -0500 |
| commit | 0c9547a066386f82f8e724c0f61c4d31dc5351e2 (patch) | |
| tree | fd3ea3d4b3ba6cbb468f04f44334b00edee4f307 /window-debug.go | |
| parent | 55a9759ab8fdc855670c6aa52ecd8362c5337a18 (diff) | |
NODE: continued work on implementing a node tree
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'window-debug.go')
| -rw-r--r-- | window-debug.go | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/window-debug.go b/window-debug.go index 19aadad..2e31440 100644 --- a/window-debug.go +++ b/window-debug.go @@ -140,8 +140,13 @@ func makeWindowDebug() ui.Control { DebugDataNodeMap() }) - n2 := addButton(vbox, "DebugNodeChildren()") + n2 := addButton(vbox, "DebugDataNodeChildren()") n2.OnClicked(func(*ui.Button) { + DebugDataNodeChildren() + }) + + n3 := addButton(vbox, "DebugNodeChildren()") + n3.OnClicked(func(*ui.Button) { DebugNodeChildren() }) |
