Skip to content

Commit

Permalink
fix scale
Browse files Browse the repository at this point in the history
  • Loading branch information
sharrlotte committed Feb 12, 2025
1 parent 8719fc7 commit 3f776fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mindytool/gui/FilterDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public FilterDialog(Cons<Cons<Seq<TagData>>> tagProvider) {
}

public void show(SearchConfig searchConfig) {
scale = !Vars.mobile ? 0.55f : 0.75f;
scale = Vars.mobile ? 0.55f : 0.75f;
cardSize = (int) (350 * scale);
cols = (int) Math.ceil(Core.graphics.getWidth() / (cardSize + CARD_GAP));

Expand Down

0 comments on commit 3f776fd

Please sign in to comment.