summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/view/impl/SidePanel.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/jrummikub/view/impl/SidePanel.java')
-rw-r--r--src/jrummikub/view/impl/SidePanel.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jrummikub/view/impl/SidePanel.java b/src/jrummikub/view/impl/SidePanel.java
index facf430..d17838f 100644
--- a/src/jrummikub/view/impl/SidePanel.java
+++ b/src/jrummikub/view/impl/SidePanel.java
@@ -334,7 +334,7 @@ class SidePanel extends JPanel implements ISidePanel {
GridBagConstraints c = new GridBagConstraints();
c.gridx = 0;
c.gridy = 0;
- c.gridheight = gameSettings.doSeeHandSize() ? 3 : 2;
+ c.gridheight = gameSettings.getSeeHandSize() ? 3 : 2;
c.weighty = 1;
c.insets = new Insets(4, 4, 4, 4);
playerColor = new JLabel(ImageUtil.createColorIcon(
@@ -376,7 +376,7 @@ class SidePanel extends JPanel implements ISidePanel {
playerStatus = new JLabel(status);
add(playerStatus, c);
- if (gameSettings.doSeeHandSize()) {
+ if (gameSettings.getSeeHandSize()) {
JLabel handSizeLabel = new JLabel("Handsteine: ");
JLabel handSizeInfo = new JLabel("" + player.getHand().getSize());
c.gridy = 2;