Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8123972

Double click is not being caught by OnMouseEvent (JavaFX2)

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Cannot Reproduce
    • Icon: P4 P4
    • 8
    • 7u6
    • javafx
    • windows XP, Netbeans 7.2 Java 7

      Double clicks are being captured as single click :(

      In fxml file:

      <Button fx:id="A_button" onMouseClicked="#buttonAClicked">
      In the controller

      private void buttonAClicked(MouseEvent mouseEvent) {
          if (mouseEvent.getButton().equals(MouseButton.PRIMARY)) {
              if (mouseEvent.getClickCount() == 2) {
                  System.out.println("Double clicked A_button");
              }
              if (mouseEvent.getClickCount() == 1) {
                  System.out.println("Single clicked A_button");
              }
          }
      }
      Unfortunately I am finding that double click is not being caught - only single clicks. In the debugger, click count is 1.

            lnerad Ľubomír Nerád (Inactive)
            aphilipjfx Anil Philip (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: