summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2023-04-27 20:41:53 -0500
committerJeff Carr <[email protected]>2023-04-27 20:41:53 -0500
commit9e285c7affa3257a46e85acde6dc64a9c781b728 (patch)
tree7e957fc0b5f6e631e762baffe292828e318e0910 /structs.go
parent6f441738061b0528e86183402474ddb1cdf3c77a (diff)
gocui: grid width fixed
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go8
1 files changed, 3 insertions, 5 deletions
diff --git a/structs.go b/structs.go
index b222138..4697dde 100644
--- a/structs.go
+++ b/structs.go
@@ -24,13 +24,11 @@ var Config GuiConfig
// This struct can be used with the go-arg package
type GuiArgs struct {
- Toolkit []string `arg:"--toolkit" help:"The order to attempt loading plugins [gocui,andlabs,gtk,qt]"`
- GuiDebug bool `arg:"--gui-debug" help:"debug the GUI"`
- GuiVerbose bool `arg:"--gui-verbose" help:"enable all GUI flags"`
+ GuiToolkit []string `arg:"--gui-toolkit" help:"The order to attempt loading plugins [gocui,andlabs,gtk,qt]"`
+ GuiDebug bool `arg:"--gui-debug" help:"open the GUI debugger"`
+ GuiVerbose bool `arg:"--gui-verbose" help:"enable all logging"`
}
-// var verbose GuiArgs.GuiDebug
-
type GuiConfig struct {
// This is the master node. The Binary Tree starts here
rootNode *Node