summaryrefslogtreecommitdiff
path: root/logsettings/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-04 15:14:37 -0600
committerJeff Carr <[email protected]>2024-01-04 15:14:37 -0600
commit32876a5bfb44b600bc3e26b17096af5f39a5c3b1 (patch)
tree7434998c9bf401c0358e110515ae78f53407099c /logsettings/structs.go
parent10001c70061dc9eda1b2aceb5a8cade74a8cb3a0 (diff)
restore defaults, all on, all off all work
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'logsettings/structs.go')
-rw-r--r--logsettings/structs.go10
1 files changed, 4 insertions, 6 deletions
diff --git a/logsettings/structs.go b/logsettings/structs.go
index 2a14cb5..35b24ca 100644
--- a/logsettings/structs.go
+++ b/logsettings/structs.go
@@ -2,7 +2,7 @@ package logsettings
import (
"go.wit.com/gui/gui"
- "go.wit.com/gui/gadgets"
+// "go.wit.com/gui/gadgets"
)
var myLogGui *LogSettings
@@ -16,10 +16,8 @@ type LogSettings struct {
parent *gui.Node // where to draw our window
window *gui.Node // our window for displaying the log package settings
+ box *gui.Node // the first box in the window
- // Primary Directives
- status *gadgets.OneLiner
- summary *gadgets.OneLiner
-
- checkbox *gadgets.LogFlag
+ buttonG *gui.Node // the group of buttons
+ flagG *gui.Node // the group of all the flag checkbox widgets
}