Example usage for javafx.scene Cursor OPEN_HAND

List of usage examples for javafx.scene Cursor OPEN_HAND

Introduction

In this page you can find the example usage for javafx.scene Cursor OPEN_HAND.

Prototype

Cursor OPEN_HAND

To view the source code for javafx.scene Cursor OPEN_HAND.

Click Source Link

Document

A cursor with a hand which is open

Usage

From source file:view.EditorView.java

@FXML
void insertRoomOnMouseReleased(MouseEvent event) {
    insertRoom.setCursor(Cursor.OPEN_HAND);
    if (insertRoomDragDetected) {
        insertRoomDragDetected = false;/*from w  w  w.j a v a2  s .  c om*/
        scrollPaneOnMouseClicked(event);
    }
}