summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-03-04 01:57:59 -0600
committerJeff Carr <[email protected]>2025-03-04 01:57:59 -0600
commitf65d80862e9ef92ab8b36829342a6738cbc4b5d5 (patch)
treef8733a57b92c35d7d634e91a60aee98a549d6fa1 /structs.go
parentdcd32c255c4c4a7b31ebc2395a541704a753a092 (diff)
fyne changes to see if it can workv0.0.29v0.0.28
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/structs.go b/structs.go
index d64389a..5704dd4 100644
--- a/structs.go
+++ b/structs.go
@@ -8,8 +8,12 @@ import (
// stores the raw toolkit internals
type guiWidget struct {
- Width int
- Height int
+ parent *guiWidget
+ children []*guiWidget
+ node *tree.Node // the pointer back to the tree
+ cuiName string
+ Width int
+ Height int
c int
val map[string]int