summaryrefslogtreecommitdiff
path: root/gui.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2019-05-26 12:10:48 -0700
committerJeff Carr <[email protected]>2019-05-26 12:10:48 -0700
commit679f01341eaec0b5d6697e4015da18bfa12e8122 (patch)
tree11e343cb7750aeabd9f48021a6b9ed74b2075090 /gui.go
parent1fbb0cd227987b1b7758c19452ce97338041c302 (diff)
more removal of button information function passing
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'gui.go')
-rw-r--r--gui.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui.go b/gui.go
index fdea647..254c585 100644
--- a/gui.go
+++ b/gui.go
@@ -130,7 +130,7 @@ func mouseClick(b *ButtonMap) {
log.Println("gui.mouseClick() START b.Action =", b.Action)
if (b.Action == "createAddVmBox") {
log.Println("gui.mouseClick() createAddVmBox for b =", b)
- createAddVmBox(Data.cloudTab, "Create New Virtual Machine", mouseClick)
+ createAddVmBox(Data.cloudTab, "Create New Virtual Machine")
return
}
}