- Changed the default card size to small.

This commit is contained in:
Sloth
2011-11-02 21:54:24 +00:00
parent 5a11e64661
commit 814557f7b0

View File

@@ -146,7 +146,7 @@ public class ForgePreferences extends Preferences {
this.setSkin(this.get("gui.skin", "default"));
this.setCardOverlay(this.getBoolean("card.overlay", true));
this.setCardSize(CardSizeType.valueOf(this.get("card.images.size", "medium")));
this.setCardSize(CardSizeType.valueOf(this.get("card.images.size", "small")));
this.setStackOffset(StackOffsetType.valueOf(this.get("stack.offset", "tiny")));
this.setMaxStackSize(this.getInt("stack.max.size", 3));
this.setScaleLargerThanOriginal(this.getBoolean("card.scale.larger.than.original", true));