# HG changeset patch # User Neil Muller # Date 1316036163 -7200 # Node ID 9498b259c248e5fb99df99188a7c3fd71cd8fd6f # Parent 09247e08aeda5fb2f436f3cdbdbb96eab35faba7 compress layout a tad more diff -r 09247e08aeda -r 9498b259c248 mamba/habitats/editor.py --- 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)