summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/structs.go b/structs.go
index 128866d..c393037 100644
--- a/structs.go
+++ b/structs.go
@@ -29,11 +29,11 @@ type guiConfig struct {
// a toolkit requirement. never allow more than one per program
initOnce sync.Once
- rootNode *Node // This is the master node. The Binary Tree starts here
- tree *guipb.Tree // the protobuf. switch to this. deprecate rootNode
- widgets *guipb.Widgets // don't use this I think
- counter int // used to make unique WidgetId's
- tables []*guipb.Tables // a list of active protobuf tables
+ rootNode *Node // This is the master node. The Binary Tree starts here
+ // tree *guipb.Tree // the protobuf. switch to this. deprecate rootNode
+ widgets *guipb.Widgets // don't use this I think
+ counter int // used to make unique WidgetId's
+ tables []*guipb.Tables // a list of active protobuf tables
// sets the chan for the plugins to call back too
guiChan chan widget.Action