diff --git a/app/src/main/java/io/xpipe/app/core/AppMainWindow.java b/app/src/main/java/io/xpipe/app/core/AppMainWindow.java index 3dd2247c..6ce9273c 100644 --- a/app/src/main/java/io/xpipe/app/core/AppMainWindow.java +++ b/app/src/main/java/io/xpipe/app/core/AppMainWindow.java @@ -240,13 +240,6 @@ public class AppMainWindow { public void show() { stage.show(); - - // Due to some weird GTK bug, we have to set these sizes every time we show a window even though they have been previously set - // This does not work every time however - stage.setX(stage.getX()); - stage.setY(stage.getY()); - stage.setWidth(stage.getWidth()); - stage.setHeight(stage.getHeight()); } private void setupContent(Comp content) {