changeset 289:37d88a9fc097

Tweak toolbar spacing
author Neil Muller <drnlmuller@gmail.com>
date Sat, 05 Sep 2009 16:05:41 +0000
parents 5539744cfd40
children 664bba9be40a
files gamelib/gameboard.py
diffstat 1 files changed, 5 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/gamelib/gameboard.py	Sat Sep 05 16:00:30 2009 +0000
+++ b/gamelib/gameboard.py	Sat Sep 05 16:05:41 2009 +0000
@@ -76,13 +76,13 @@
         self.add_counter(mklabel("Eggs:"), self.egg_counter)
         self.add_counter(icons.CHKN_ICON, self.chicken_counter)
         self.add_counter(icons.KILLED_FOX, self.killed_foxes)
-        self.add_spacer(20)
+        self.add_spacer(15)
 
         self.add_tool_button("Move Hen", constants.TOOL_PLACE_ANIMALS,
                 None, cursors.cursors['select'])
         self.add_tool_button("Cut Trees", constants.TOOL_LOGGING,
                 constants.LOGGING_PRICE, cursors.cursors['ball'])
-        self.add_spacer(20)
+        self.add_spacer(15)
 
         self.add_heading("Sell ...")
         self.add_tool_button("Chicken", constants.TOOL_SELL_CHICKEN,
@@ -93,7 +93,7 @@
                 None, cursors.cursors['sell'])
         self.add_tool_button("Equipment", constants.TOOL_SELL_EQUIPMENT,
                 None, cursors.cursors['sell'])
-        self.add_spacer(20)
+        self.add_spacer(15)
 
         self.add_heading("Buy ...")
 
@@ -111,8 +111,9 @@
                     equipment_cls.BUY_PRICE,
                     cursors.cursors.get('buy', None))
 
+        self.add_spacer(10)
         self.add_tool("Price Reference", self.show_prices)
-        self.add_spacer(30)
+        self.add_spacer(20)
 
         self.add_tool("Finished Day", self.day_done)