# HG changeset patch # User Neil Muller # Date 1259441542 0 # Node ID 0e552e7e06fe90dd31866f1fb78073d9b1d4faae # Parent 7bccd2bda217020a5e2a3aaaf29925a79d6067fb Use constant vertical position for buttons diff -r 7bccd2bda217 -r 0e552e7e06fe gamelib/helpscreen.py --- a/gamelib/helpscreen.py Sat Nov 28 20:45:14 2009 +0000 +++ b/gamelib/helpscreen.py Sat Nov 28 20:52:22 2009 +0000 @@ -164,7 +164,8 @@ self.add(gui.Label(word)) self.space(space) self.br(space[1]) - self.br(space[1]) + _width, _height = self.resize() + self.br(440 - _height) self.add(self.prev_button, align=-1) self.add(self.next_button, align=1) self.add(self.done_button, align=0)