summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-20 20:24:58 -0600
committerJeff Carr <[email protected]>2024-01-20 20:24:58 -0600
commit15e9548cf50fad96ee938f134daca32d7b83b896 (patch)
tree0663412f430517c55697325cea59c339c05c57bc /structs.go
parentc1b2c4a18200172f01cf9a0d02aa632f087224d5 (diff)
it's my memory so I can forgetv0.12.6
lots of general improvements ready to fix gocui working on log settings fix the debugger Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go5
1 files changed, 1 insertions, 4 deletions
diff --git a/structs.go b/structs.go
index 165a1d0..803fc7d 100644
--- a/structs.go
+++ b/structs.go
@@ -3,7 +3,6 @@ package debugger
import (
"go.wit.com/gui"
"go.wit.com/lib/gadgets"
- "go.wit.com/lib/gui/logsettings"
)
var me *debuggerSettings
@@ -13,15 +12,13 @@ type debuggerSettings struct {
hidden bool
err error
- myGui *gui.Node
+ treeRoot *gui.Node
bugWin *gadgets.BasicWindow
widgets *gadgets.BasicWindow
golang *gadgets.BasicWindow
gochan *gadgets.BasicWindow
- myLS *logsettings.LogSettings
-
mapWindows map[string]*gui.Node // tracks all windows that exist
}