forked from External/mage
* Added preferences setting to switch on/off to write card names in bigger font on card panels.
This commit is contained in:
parent
070e8609f4
commit
54ec3b658e
4 changed files with 59 additions and 17 deletions
|
|
@ -72,7 +72,7 @@ public class HandPanel extends JPanel {
|
|||
}
|
||||
|
||||
private Dimension getHandCardDimension() {
|
||||
String useBigCards = MageFrame.getPreferences().get(PreferencesDialog.KEY_HAND_USE_BIG_CARDS, "false");
|
||||
String useBigCards = PreferencesDialog.getCachedValue(PreferencesDialog.KEY_HAND_USE_BIG_CARDS, "true");
|
||||
if (!smallMode && useBigCards.equals("true")) {
|
||||
return handCardDimensionBig;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue