diff options
| author | Jeff Carr <[email protected]> | 2019-05-24 09:02:35 -0700 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2019-05-24 09:02:35 -0700 |
| commit | 265a8f6813f9be5dbf6c4c7f02f7a3e6dd9ab1be (patch) | |
| tree | 5301cdbfa142c2f6094336a142591b3f33b431ef /vmWindow.go | |
| parent | 9b29c265b26d1231cf9ddb7abf51e390197dabf1 (diff) | |
more mouse click handling cleanups
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'vmWindow.go')
| -rw-r--r-- | vmWindow.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vmWindow.go b/vmWindow.go index aff1e57..70bfa57 100644 --- a/vmWindow.go +++ b/vmWindow.go @@ -152,8 +152,8 @@ func createVmBox(tab *ui.Tab, custom func(b *ButtonMap,s string)) { func buttonVmClick(b *ButtonMap, s string) { log.Println("gui.buttonVmClick() START") - if (Data.ButtonClick != nil) { + if (Data.MouseClick != nil) { log.Println("Data.ButtonClick() START") - Data.ButtonClick(nil) + Data.MouseClick(nil) } } |
