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

Slider: can create an invalid slider when min and max values in the constructor are swapped

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • Icon: P4 P4
    • tbd
    • 8, 9
    • javafx

      the issue is quite similar to JDK-8163950.

      please run the following code:

      import javafx.application.Application;
      import javafx.scene.*;
      import javafx.scene.control.Slider;
      import javafx.stage.Stage;
      import javafx.geometry.Insets;

      public class SliderTest extends Application {

          @Override
          public void start(Stage stage) {

              Group root = new Group();
              Scene scene = new Scene(root, 200, 150);
              stage.setScene(scene);

              Slider s = new Slider(2., -2., 0.25);
              s.setPadding(new Insets(20, 20, 20, 20));

              s.setShowTickLabels(true);
              s.setShowTickMarks(true);
              s.setMajorTickUnit(0.5);
              s.setMinorTickCount(10);

              root.getChildren().add(s);
              stage.show();
          }

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

      the invalid slider will appear (no exceptions thrown), please see the attached screenshot (JDK9 b129, Windows 7)

      the issue is also reproducible with JDK8 b132

            Unassigned Unassigned
            avstepan Alexander Stepanov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated: