diff options
| author | Jeff Carr <[email protected]> | 2019-06-03 00:20:28 -0700 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2019-06-03 00:20:28 -0700 |
| commit | 5a5e4b098df074e5d15713fe79a857bdae4b17d3 (patch) | |
| tree | 8ded5b2ecd4d1fb9bce09e613fbe5dd5d0fce106 /gui.go | |
| parent | 5336ee2444a831e10600f8573d4460e7d7e3f9e8 (diff) | |
start using X & Y axis vars
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'gui.go')
| -rw-r--r-- | gui.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7,8 +7,8 @@ import "regexp" import "github.com/andlabs/ui" import _ "github.com/andlabs/ui/winmanifest" -const Xaxis = 0 -const Yaxis = 1 +const Xaxis = 0 // box that is horizontal +const Yaxis = 1 // box that is vertical func GuiInit() { Data.buttonMap = make(map[*ui.Button]*GuiButton) |
