diff options
| author | Jeff Carr <[email protected]> | 2019-06-01 02:58:49 -0700 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2019-06-01 02:58:49 -0700 |
| commit | 3673e688ecb8099e61a7f5e61e66fe7ba9429f89 (patch) | |
| tree | fd317e6079ffddc054371171d27f6159568ec3a3 /tableCallbacks.go | |
| parent | 97a4307514eb243027d81271de67f26537ab8ec6 (diff) | |
more cleaning
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'tableCallbacks.go')
| -rw-r--r-- | tableCallbacks.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tableCallbacks.go b/tableCallbacks.go index df9c408..f71cabc 100644 --- a/tableCallbacks.go +++ b/tableCallbacks.go @@ -110,7 +110,9 @@ func defaultSetCellValue(mh *TableData, row int, column int) { button := mh.Rows[row].HumanData[humanID].Button if (button != nil) { - mouseClick(button) + if (Data.MouseClick != nil) { + Data.MouseClick(button) + } return } if (Data.Debug) { |
