mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-09-26 10:25:44 +00:00
Change webtop window size
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user