greater min window height on windows and linux

This commit is contained in:
Craig Raw 2021-01-26 13:23:46 +02:00
parent 1dbf51b406
commit 6ef5e79b39

View file

@ -265,7 +265,7 @@ public class AppServices {
stage.setTitle("Sparrow");
stage.setMinWidth(650);
stage.setMinHeight(750);
stage.setMinHeight(org.controlsfx.tools.Platform.getCurrent() == org.controlsfx.tools.Platform.OSX ? 750 : 780);
stage.setScene(scene);
stage.getIcons().add(new Image(MainApp.class.getResourceAsStream("/image/sparrow.png")));