summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2019-05-26 14:12:38 -0700
committerJeff Carr <[email protected]>2019-05-26 14:12:38 -0700
commit80608e070dd16636780b40a8061ae6ec41e9b1f7 (patch)
tree63b4475a934b87d5aa4b0c83967592748dea9d75 /structs.go
parente6d49b94ed17442302124c04dc4878943ca23b9b (diff)
remove old test code
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/structs.go b/structs.go
index 643c1de..1420989 100644
--- a/structs.go
+++ b/structs.go
@@ -59,7 +59,6 @@ type GuiDataStructure struct {
// account entry textboxes
Config *pb.Config
- Current *pb.Account
// A map of all buttons everywhere on all
// windows, all tabs, across all goroutines
@@ -67,7 +66,6 @@ type GuiDataStructure struct {
AllButtons []ButtonMap
// a tab (maybe the one the user is playing with?)
- CurrentTab *GuiTabStructure
// a VM (maybe the one the user is playing with?)
CurrentVM *pb.Event_VM
@@ -105,7 +103,6 @@ type ButtonMap struct {
Account *pb.Account
VM *pb.Event_VM
Action string // what type of button
- aTab *GuiTabStructure
custom func (*ButtonMap)
}