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);
}
}
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);
}
}