-
Bug
-
Resolution: Unresolved
-
P4
-
8u20
Although the property is set to true, nothing really happens:
@Override
public void start(Stage stage) throws Exception {
stage.setScene(new Scene(new Group(),100f,100f));
stage.show();
Stage stage2 = new Stage();
stage2.setScene(new Scene(new Group(),100f,100f));
stage2.initOwner(stage);
stage2.show();
stage.setIconified(true);
System.out.println("stage.inconified=" + stage.isIconified() + ", stage2.inconified=" + stage2.isIconified());
}
@Override
public void start(Stage stage) throws Exception {
stage.setScene(new Scene(new Group(),100f,100f));
stage.show();
Stage stage2 = new Stage();
stage2.setScene(new Scene(new Group(),100f,100f));
stage2.initOwner(stage);
stage2.show();
stage.setIconified(true);
System.out.println("stage.inconified=" + stage.isIconified() + ", stage2.inconified=" + stage2.isIconified());
}
- relates to
-
JDK-8088236 GTK requested size failure on remote display
-
- Open
-
-
JDK-8098209 [Stage] Option to keep Stages always on top
-
- Resolved
-
-
JDK-8260528 Clean glass-gtk sizing and positioning code
-
- Resolved
-