Skip to content

Commit 4aa4f42

Browse files
committed
actually set default size
1 parent 35e9c64 commit 4aa4f42

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/gregtech/api/mui/GTGuis.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ public static PopupPanel createPopupPanel(String name, int width, int height, bo
8383
}
8484

8585
public static PopupPanel defaultPopupPanel(String name) {
86-
return new PopupPanel(name);
86+
return new PopupPanel(name)
87+
.size(DEFAULT_WIDTH, DEFAULT_HIEGHT);
8788
}
8889

8990
public static PopupPanel defaultPopupPanel(String name, boolean disableBelow,

0 commit comments

Comments
 (0)