Skip to content

Commit

Permalink
Decrease minimal dimensions
Browse files Browse the repository at this point in the history
  • Loading branch information
RetGal committed Feb 10, 2024
1 parent 08d14f2 commit d4d1258
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/mpo/dayon/common/gui/common/FrameType.java
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package mpo.dayon.common.gui.common;

public enum FrameType {
ASSISTANT("assistant", 1024, 512),
ASSISTED("assisted", 512, 256);
ASSISTANT("assistant", 640, 320),
ASSISTED("assisted", 480, 240);

private final String prefix;
private final Integer minWidth;
Expand All @@ -18,11 +18,11 @@ public String getPrefix() {
return prefix;
}

public Integer getMinWidth() {
Integer getMinWidth() {
return minWidth;
}

public Integer getMinHeight() {
Integer getMinHeight() {
return minHeight;
}
}

0 comments on commit d4d1258

Please sign in to comment.