pass 'ADD' to main application code

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2019-05-26 14:03:20 -07:00
parent b57ed75580
commit e6d49b94ed
2 changed files with 5 additions and 2 deletions

3
gui.go
View File

@ -134,6 +134,9 @@ func mouseClick(b *ButtonMap) {
createAddVmBox(Data.cloudTab, "Create New Virtual Machine")
return
}
if (b.Action == "ADD") {
log.Println("\tgui.mouseClick() SHOULD ADD VM HERE?")
}
}
if (Data.MouseClick == nil) {

View File

@ -366,7 +366,7 @@ func createAddVmBox(tab *ui.Tab, name string) {
hboxButtons.SetPadded(true)
vbox.Append(hboxButtons, false)
hboxButtons.Append(CreateButton(nil, nil, "Add Virtual Machine","createAddVmBox", nil), false)
hboxButtons.Append(CreateButton(nil, nil, "Add Virtual Machine","ADD", nil), false)
hboxButtons.Append(CreateButton(nil, nil, "Cancel", "CLOSE", nil), false)
tab.Append(name, vbox)