Re-add small margins

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@349 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Matthias Schiffer 2011-05-31 05:06:28 +02:00
parent 4913a5b5fb
commit c1651e5317

View file

@ -330,7 +330,7 @@ class SettingsPanel extends JPanel implements ISettingsPanel {
private void createColorButton(final StoneColor color) {
JToggleButton button = new JToggleButton(ImageUtil.createColorIcon(
StonePainter.getColor(color), 12, 1));
button.setMargin(new Insets(0, 0, 0, 0));
button.setMargin(new Insets(3, 3, 3, 3));
button.addChangeListener(new ChangeListener() {
@Override