diff options
| author | Jeff Carr <[email protected]> | 2024-01-18 01:34:00 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-18 01:34:00 -0600 |
| commit | f3da30a919832f071a120927ceb431d8fd5a6147 (patch) | |
| tree | 2375b5d3409a04909ada20ea49e2a01c2b36ab19 /structs.go | |
| parent | b0ddd6af217a873c66013706372b5d989feffcf3 (diff) | |
fix paths
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -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 } |
