changeset 237:9498b259c248

compress layout a tad more
author Neil Muller <drnlmuller@gmail.com>
date Wed, 14 Sep 2011 23:36:03 +0200
parents 09247e08aeda
children f00f6006cb5d
files mamba/habitats/editor.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mamba/habitats/editor.py	Wed Sep 14 23:32:08 2011 +0200
+++ b/mamba/habitats/editor.py	Wed Sep 14 23:36:03 2011 +0200
@@ -113,14 +113,14 @@
             self.container.add(tile_button)
             button_height += \
                     tile_button.surface.get_height() + button_padding
-        button_height += 10
+        button_height += 2
 
         mode_button = TextButton((button_left, button_height),
                 change_mode_text)
         mode_button.add_callback('clicked', self.change_toolbar)
         self.container.add(mode_button)
         button_height += mode_button.surface.get_height() + button_padding
-        button_height += 10
+        button_height += 2
 
         save_button = TextButton((button_left, button_height), "Save Level")
         save_button.add_callback('clicked', self.save)