Win: Setting stage min width/height doesn't work before showing the stage on Windows

XMLWordPrintable

    • Type: Bug
    • Resolution: Fixed
    • Priority: P4
    • 8
    • Affects Version/s: 8
    • Component/s: javafx
    • None

      When stage minimum width/height is set before stage.show(), the stage is shown smaller and when I try to resize it it jump-grows to the set minimum size.
      Reproducible on Windows, not reproducible on Mac.

          @Override public void start(Stage stage) {
              Group root = new Group();
              Scene scene = new Scene(root, 400, 400);

              stage.setScene(scene);
              stage.setMinWidth(800);
              stage.show();
          }

            Assignee:
            Petr Pchelko (Inactive)
            Reporter:
            Pavel Ĺ afrata
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: