diff options
| author | Jeff Carr <[email protected]> | 2021-10-25 08:12:31 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2021-10-25 08:12:31 -0500 |
| commit | 7a302348c8d82aca893311278218ab192c3e05e9 (patch) | |
| tree | ac5b3bc96d7657ebf11677ea6c50ca50531a1f41 /window-debug.go | |
| parent | f8f2de85e17249b8ee1243b8b0713114580025d5 (diff) | |
NODE: remove lots of deprecated code
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'window-debug.go')
| -rw-r--r-- | window-debug.go | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/window-debug.go b/window-debug.go index 9e5dc1b..a70bb1f 100644 --- a/window-debug.go +++ b/window-debug.go @@ -12,22 +12,9 @@ var names = make([]string, 100) var nodeNames = make([]string, 100) func DebugWindow() { - log.Println("START gui.DebugWindow()") - - /* - title := "WIT GUI Debug Window" - node := InitWindow(nil, nil, title, 0) - box := node.box - window := box.Window - log.Println("box =", box) - log.Println("window =", window) - */ - Config.Title = "replace InitWindow()" node := NewWindow() node.AddDebugTab("WIT GUI Debug Tab") - - // window.UiWindow.Show() } // TODO: remove this crap @@ -191,13 +178,6 @@ func makeWindowDebug() ui.Control { Data.DumpNodeMap() }) -/* - n1 = addButton(vbox, "DebugDataNodeChildren()") - n1.OnClicked(func(*ui.Button) { - DebugDataNodeChildren() - }) -*/ - n1 = addButton(vbox, "Data.ListChildren(false)") n1.OnClicked(func(*ui.Button) { Data.ListChildren(false) |
