Change webtop window size

This commit is contained in:
crschnick
2025-02-16 19:45:50 +00:00
parent 4a115fc411
commit 020c6d9d4b
@@ -359,8 +359,13 @@ public class AppMainWindow {
}
TrackEvent.debug("Window loaded saved bounds");
} else if (!AppProperties.get().isShowcase()) {
stage.setWidth(1280);
stage.setHeight(720);
if (AppDistributionType.get() == AppDistributionType.WEBTOP) {
stage.setWidth(1000);
stage.setHeight(600);
} else {
stage.setWidth(1280);
stage.setHeight(720);
}
} else {
stage.setX(312);
stage.setY(149);