summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-18 01:34:00 -0600
committerJeff Carr <[email protected]>2024-01-18 01:34:00 -0600
commitf3da30a919832f071a120927ceb431d8fd5a6147 (patch)
tree2375b5d3409a04909ada20ea49e2a01c2b36ab19 /structs.go
parentb0ddd6af217a873c66013706372b5d989feffcf3 (diff)
fix paths
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go18
1 files changed, 9 insertions, 9 deletions
diff --git a/structs.go b/structs.go
index 0637ac4..c06124f 100644
--- a/structs.go
+++ b/structs.go
@@ -1,22 +1,22 @@
package logsettings
-import (
+import (
"go.wit.com/gui/gui"
- "go.wit.com/gui/gadgets"
+ "go.wit.com/lib/gadgets"
)
var myLogGui *LogSettings
type LogSettings struct {
- ready bool
- hidden bool
- err error
+ ready bool
+ hidden bool
+ err error
groups map[string]*flagGroup
- parent *gui.Node // where to draw our window
- win *gadgets.BasicWindow // our window for displaying the log package settings
+ parent *gui.Node // where to draw our window
+ win *gadgets.BasicWindow // our window for displaying the log package settings
- buttonG *gui.Node // the group of buttons
- flagG *gui.Node // the group of all the flag checkbox widgets
+ buttonG *gui.Node // the group of buttons
+ flagG *gui.Node // the group of all the flag checkbox widgets
}