Это мой код
Код: Выделить всё
public class Test11 extends Application {
@Override
public void start(Stage primaryStage) {
var button = new Button("Test");
button.setOnAction(e -> primaryStage.setWidth(primaryStage.getWidth() - 10));
var vBox = new VBox(button);
vBox.setStyle("-fx-background-color: yellow");
var scene = new Scene(vBox, 400, 300);
primaryStage.initStyle(StageStyle.TRANSPARENT);
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
Код: Выделить всё
(java:61615): Gtk-CRITICAL **: 20:46:53.565: gtk_window_resize: assertion 'height > 0' failed
Подробнее здесь: https://stackoverflow.com/questions/791 ... n-height-0
Мобильная версия