summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-18 09:23:16 -0500
committerJeff Carr <[email protected]>2025-10-18 09:23:16 -0500
commit1f36cd7b6612177ac1bf2ff6ba8d538affce6420 (patch)
tree0ffc6baef16773759f4b55b6d7131d1eb1d00b46 /structs.go
parentefd65e7567d2c8440cf1b29af8c374e69f7e08e6 (diff)
finally progress on proper integration herev0.25.9
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go16
1 files changed, 8 insertions, 8 deletions
diff --git a/structs.go b/structs.go
index e8fc0a4..d690eda 100644
--- a/structs.go
+++ b/structs.go
@@ -26,14 +26,14 @@ import (
var me guiConfig
type guiConfig struct {
- rootNode *Node // This is the master node. The Binary Tree starts here
- resFS embed.FS // option to pass in compiled plugins as embedded files
- guiChan chan widget.Action // sets the chan for the plugins to call back too
- tables []*guipb.Tables // a list of active protobuf tables
- postMustParse func(string) string // used to get the final go-arg values after all user configuration is finished
- counter int // used to make unique WidgetId's. this is a fun variable, but kinda dumb and should go
- appPlugin string // deprecate. what the application would like the default GUI plugin to be
- widgets *guipb.Widgets // switch to this and/or tree below
+ rootNode *Node // This is the master node. The Binary Tree starts here
+ resFS embed.FS // option to pass in compiled plugins as embedded files
+ guiChan chan widget.Action // sets the chan for the plugins to call back too
+ tables []*guipb.Tables // a list of active protobuf tables
+ // postMustParse func(string) string // used to get the final go-arg values after all user configuration is finished
+ counter int // used to make unique WidgetId's. this is a fun variable, but kinda dumb and should go
+ appPlugin string // deprecate. what the application would like the default GUI plugin to be
+ widgets *guipb.Widgets // switch to this and/or tree below
// tree *guipb.Tree // the protobuf. switch to this. deprecate rootNode
}