Skip to content

Commit

Permalink
Impl #81 - Improve mouse move bindings
Browse files Browse the repository at this point in the history
Clear currentActiveMoveActions on mouseExit()
  • Loading branch information
fipro78 committed May 16, 2024
1 parent 8ef0027 commit 1d702fb
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ public synchronized void mouseExit(MouseEvent event) {

// ensure that any current active move action is exited
this.currentActiveMoveActions.forEach(action -> action.runExit(this.natTable, event));
this.currentActiveMoveActions.clear();

IMouseAction mouseExitAction = getUiBindingRegistry().getMouseExitAction(event);
if (mouseExitAction != null) {
Expand Down

0 comments on commit 1d702fb

Please sign in to comment.