diff options
| author | Jeff Carr <[email protected]> | 2019-05-29 12:21:10 -0700 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2019-05-29 12:21:10 -0700 |
| commit | 2dabe5eb9f5722b3d498af03fed274e2d248a6c8 (patch) | |
| tree | e2760733cbbedd187abdcc0d3c686c891b10ce53 /structs.go | |
| parent | 73804529267500c49f6321d2fb33c028c2c2fbef (diff) | |
more dereferencing of *ui.Area
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -13,7 +13,6 @@ import pb "git.wit.com/wit/witProtobuf" // be the safe way to interact with the GUI // var Data GuiDataStructure -var window1 *WindowMap type GuiDataStructure struct { State string @@ -53,15 +52,17 @@ type GuiDataStructure struct { // pass it in CurrentVM *pb.Event_VM + Window1 *WindowMap + Window2 *WindowMap + EntryNick *ui.Entry EntryUser *ui.Entry EntryPass *ui.Entry // stuff for the splash screen / setup tabs - cloudWindow *ui.Window cloudBox *ui.Box smallBox *ui.Box - myAH *AreaHandler +// myAH *AreaHandler tabcount int } |
