-
Bug
-
Resolution: Duplicate
-
P3
-
9
-
None
-
Ubuntu 16.04, GTK3, VMWare 7.1.4, b141
-
linux
For any simplest application the client area is not updated at application startup (until resize).
Sample to check:
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class App extends Application {
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage stage) throws Exception {
Button control = new Button("Button");
Scene scene = new Scene(new VBox(control), 100, 100);
stage.setScene(scene);
stage.show();
}
}
Sample to check:
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class App extends Application {
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage stage) throws Exception {
Button control = new Button("Button");
Scene scene = new Scene(new VBox(control), 100, 100);
stage.setScene(scene);
stage.show();
}
}
- duplicates
-
JDK-8163496 Rework Glass GTK to correct gtk3 structure sizes
-
- Resolved
-