-
Bug
-
Resolution: Unresolved
-
P4
-
7u6
-
Windows 7
When I open a stage with setIconified(true), the Stage has always the (huge) default size, when I open it manually afterwards.
The scene's width and height are ignored.
Sample code:
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class TestApp3 extends Application {
@Override
public void start(final Stage stage) throws Exception {
final VBox root = new VBox();
Button button = new Button();
button.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent actionEvent) {
Stage subStage = new Stage();
Label label = new Label("TEST");
Scene scene = new Scene(label, 300, 300);
subStage.setScene(scene);
subStage.setIconified(true);
subStage.show();
}
});
root.getChildren().add(button);
Scene scene = new Scene(root);
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}
The scene's width and height are ignored.
Sample code:
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class TestApp3 extends Application {
@Override
public void start(final Stage stage) throws Exception {
final VBox root = new VBox();
Button button = new Button();
button.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent actionEvent) {
Stage subStage = new Stage();
Label label = new Label("TEST");
Scene scene = new Scene(label, 300, 300);
subStage.setScene(scene);
subStage.setIconified(true);
subStage.show();
}
});
root.getChildren().add(button);
Scene scene = new Scene(root);
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}