diff options
Diffstat (limited to 'source_edit.lua')
-rw-r--r-- | source_edit.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source_edit.lua b/source_edit.lua index 40af2e8..0af9949 100644 --- a/source_edit.lua +++ b/source_edit.lua @@ -239,7 +239,7 @@ function edit.mouse_press(State, x,y, mouse_button) if State.search_term then return end State.mouse_down = mouse_button --? print_and_log(('edit.mouse_press: cursor at %d,%d'):format(State.cursor1.line, State.cursor1.pos)) - if mouse_press_consumed_by_any_button_handler(State, x,y, mouse_button) then + if mouse_press_consumed_by_any_button(State, x,y, mouse_button) then -- press on a button and it returned 'true' to short-circuit return end |