summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2019-06-03 00:50:05 -0700
committerJeff Carr <[email protected]>2019-06-03 00:50:05 -0700
commit0e60af56dc487416f179e196f0421721d4437fc7 (patch)
tree91fa7aa5ff43f0b66eafcc77d71ce316a811bce6 /structs.go
parent5a5e4b098df074e5d15713fe79a857bdae4b17d3 (diff)
more button cleanups
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/structs.go b/structs.go
index af5264c..a074e56 100644
--- a/structs.go
+++ b/structs.go
@@ -80,7 +80,8 @@ type GuiWindow struct {
// There can be lots of these for each GuiWindow
type GuiBox struct {
Name string // field for human readable name
- Window *GuiWindow
+ Axis int // does it add items to the X or Y axis
+ Window *GuiWindow // the parent Window
// andlabs/ui abstraction mapping
UiBox *ui.Box