Skip to content

Commit

Permalink
Cursor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ecmnet committed Jun 14, 2021
1 parent 3b7648e commit 9581d51
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,9 @@ public void changed(ObservableValue<? extends Boolean> observable, Boolean oldVa
if(actionable.get()) {
is_action = isActionEvent(event);
}

if(!is_action && !is_resizing)
setCursor(Cursor.DEFAULT);
});

}
Expand Down Expand Up @@ -310,7 +313,6 @@ private boolean isResizeEvent(MouseEvent event) {
}

}
setCursor(Cursor.DEFAULT);
return false;
}

Expand All @@ -328,7 +330,6 @@ private boolean isActionEvent(MouseEvent event) {
}

}
setCursor(Cursor.DEFAULT);
return false;
}

Expand Down

0 comments on commit 9581d51

Please sign in to comment.