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

[Slider] Right-click changes button position.

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not an Issue
    • Icon: P4 P4
    • None
    • 8
    • javafx
    • jdk 1.8.0 - b62

      To reproduce right-click on different positions of the scroll-bar.
      See that button moves along the slider as if it was a left-click.


      import javafx.application.Application;
      import javafx.scene.Scene;
      import javafx.scene.control.Slider;
      import javafx.scene.layout.HBox;
      import javafx.stage.Stage;

      public class BugScrollBarRightClick extends Application {

          @Override
          public void start(Stage stage) {

              HBox root = new HBox(15d);
              root.getChildren().add(new Slider());
              
              Scene scene = new Scene(root, 300, 250);

              stage.setScene(scene);
              stage.setTitle(System.getProperty("java.runtime.version") + "; " + System.getProperty("javafx.runtime.version"));
              stage.show();
          }

          public static void main(String[] args) {
              launch(args);
          }

      }

            psomashe Parvathi Somashekar (Inactive)
            dzinkevi Dmitry Zinkevich (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: