Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i need to change cursor on dragging and want to change it after mouse is pressed immediatly, so i do it like this:

public class Graph extends Pane{


 void someInit(){

    setOnMousePressed(new EventHandler<MouseEvent>() {

            @Override
            public void handle(MouseEvent e) {
                logger.info("pressed graph x-> " + e.getX() + " |  y->" + e.getY());
                setCursor(Cursor.MOVE);
            }
        });
 }

}

After pressing mouse button and not moving it any pixel, cursor does not change. It changes after smallest mouse move. How can I force to display it immediatly without mouse move.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.