From 01b8af46208a818d1d47438214d98690982e1792 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Tue, 9 Sep 2025 05:28:47 -0500 Subject: [PATCH] fix --gui argv --- gui.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gui.go b/gui.go index 302e5e9..594dabc 100644 --- a/gui.go +++ b/gui.go @@ -18,7 +18,8 @@ This struct can be used with the go-arg package. These are the generic default command line arguments for the 'GUI' package */ type ArgsGui struct { - GuiVerbose bool `arg:"--gui-verbose" help:"enable all logging"` + GuiPlugin string `arg:"--gui" help:"select the plugin (andlabs,gocui,etc)"` + GuiVerbose bool `arg:"--gui-verbose" help:"enable all logging"` } /*