Made showing of hand stone count working

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@520 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Jannis Harder 2011-06-21 00:56:05 +02:00
parent a0573a5928
commit 2f08091b65
4 changed files with 35 additions and 7 deletions

View file

@ -168,6 +168,15 @@ public abstract class AbstractSettingsControl {
update();
}
}));
connections.add(view.getSettingsPanel().getChangeSeeHandSizeEvent()
.add(new IListener1<Boolean>() {
@Override
public void handle(Boolean value) {
settings.setSeeHandSize(value);
update();
}
}));
}
/**