From 9e285c7affa3257a46e85acde6dc64a9c781b728 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 27 Apr 2023 20:41:53 -0500 Subject: gocui: grid width fixed Signed-off-by: Jeff Carr --- structs.go | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'structs.go') 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 -- cgit v1.2.3