diff options
| author | Jeff Carr <[email protected]> | 2023-04-27 20:41:53 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-04-27 20:41:53 -0500 |
| commit | 9e285c7affa3257a46e85acde6dc64a9c781b728 (patch) | |
| tree | 7e957fc0b5f6e631e762baffe292828e318e0910 /structs.go | |
| parent | 6f441738061b0528e86183402474ddb1cdf3c77a (diff) | |
gocui: grid width fixed
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -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 |
