# HG changeset patch # User Neil Muller # Date 1378427996 -7200 # Node ID 6e32494b9f9eb0704c4582d5c40bad155d2876a8 # Parent 6376730611f4f2bf1bf3fb866b5f9f484e5d36b4 Move quit button away from other stuff diff -r 6376730611f4 -r 6e32494b9f9e tools/area_editor.py --- a/tools/area_editor.py Fri Sep 06 02:36:59 2013 +0200 +++ b/tools/area_editor.py Fri Sep 06 02:39:56 2013 +0200 @@ -765,7 +765,7 @@ widgets.append(save_but) y += MENU_BUTTON_HEIGHT + MENU_PAD - y += MENU_PAD + y = SCREEN[1] - MENU_BUTTON_HEIGHT - MENU_PAD quit_but = Button('Quit', action=self.quit) quit_but.rect = BUTTON_RECT.copy() quit_but.rect.move_ip(MENU_LEFT, y) @@ -836,7 +836,7 @@ widgets.append(save_but) y += MENU_BUTTON_HEIGHT + MENU_PAD - y += MENU_PAD + y = SCREEN[1] - MENU_BUTTON_HEIGHT - MENU_PAD quit_but = Button('Quit', action=self.quit) quit_but.rect = BUTTON_RECT.copy() quit_but.rect.move_ip(MENU_LEFT, y)