-
Bug
-
Resolution: Incomplete
-
P4
-
None
-
8u152
-
x86
-
os_x
FULL PRODUCT VERSION :
8u152
ADDITIONAL OS VERSION INFORMATION :
Mac OS Sierra 10.12.6
A DESCRIPTION OF THE PROBLEM :
When setting a big enough min width/Height for a Stage, maximizing this Stage does not work anymore.
Either by mouse click or when enlarging the Stage via Mouse drag.
It will start the "animation" in moving the Stage to the upper left corner and shrink the Stage until it hit the min setttings.
The window will then remain in the min width/height but act like Maximized.
This behavior started with u152 and is working well until u144
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Create a Stage and set the min width/Height to >=200
Maximize the Stage either by click on the button, double click on the main bar or enlarge manually via mouse drag.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Stage is maximized
ACTUAL -
Stage stays in the upper left corner with with/height like the min. settings.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
Stage stage = new Stage(StageStyle.DECORATED);
FXMLLoader fxmlLoader = new FXMLLoader();
URL location = getClass().getResource("/*Any FXML FILE*/");
fxmlLoader.setLocation(location);
fxmlLoadersetRoot(null);
fxmlLoader.setController(null);
Parent root = (Parent) MainModel.getInstance().fxmlLoader.load();
Scene scene = new Scene(root);
stage.setScene(scene);
stage.setMinHeight(200);
stage.setMinWidth(200);
stage.show;
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
Downgrade to u144
8u152
ADDITIONAL OS VERSION INFORMATION :
Mac OS Sierra 10.12.6
A DESCRIPTION OF THE PROBLEM :
When setting a big enough min width/Height for a Stage, maximizing this Stage does not work anymore.
Either by mouse click or when enlarging the Stage via Mouse drag.
It will start the "animation" in moving the Stage to the upper left corner and shrink the Stage until it hit the min setttings.
The window will then remain in the min width/height but act like Maximized.
This behavior started with u152 and is working well until u144
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Create a Stage and set the min width/Height to >=200
Maximize the Stage either by click on the button, double click on the main bar or enlarge manually via mouse drag.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Stage is maximized
ACTUAL -
Stage stays in the upper left corner with with/height like the min. settings.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
Stage stage = new Stage(StageStyle.DECORATED);
FXMLLoader fxmlLoader = new FXMLLoader();
URL location = getClass().getResource("/*Any FXML FILE*/");
fxmlLoader.setLocation(location);
fxmlLoadersetRoot(null);
fxmlLoader.setController(null);
Parent root = (Parent) MainModel.getInstance().fxmlLoader.load();
Scene scene = new Scene(root);
stage.setScene(scene);
stage.setMinHeight(200);
stage.setMinWidth(200);
stage.show;
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
Downgrade to u144