diff options
| author | Jeff Carr <[email protected]> | 2021-10-07 01:37:37 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2021-10-07 01:37:37 -0500 |
| commit | 3252ed35f22b438c4991ee6e6d1714e884a1e41f (patch) | |
| tree | ed25cf741c027e84ea3a31a29e772a0578670228 /debug.go | |
| parent | 36e2c6d2e3c266f32325985e98c3776755fdd511 (diff) | |
DEBUG: add more debugging options
Diffstat (limited to 'debug.go')
| -rw-r--r-- | debug.go | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -32,6 +32,12 @@ func WatchGUI() { } } +func DumpWindows() { + for name, _ := range Data.WindowMap { + log.Println("gui.DumpWindows() window =", name) + } +} + func DumpMap() { for name, window := range Data.WindowMap { log.Println("gui.DumpBoxes() MAP: ", name) |
