From: Simon Cross Date: Sat, 17 May 2014 21:35:44 +0000 (+0200) Subject: Vertically centre the bits box. X-Git-Tag: 0.1~15^2~8 X-Git-Url: https://git.ctpug.org.za/?p=naja.git;a=commitdiff_plain;h=a6de62bab3beb608b3fd9f975947f4a46ec5d1c9 Vertically centre the bits box. --- diff --git a/naja/widgets/info_area.py b/naja/widgets/info_area.py index e348048..453e379 100644 --- a/naja/widgets/info_area.py +++ b/naja/widgets/info_area.py @@ -55,6 +55,7 @@ class InfoAreaWidget(Widget): pos = lambda: (INFO_LEFT_PADDING, y_offset) # Bits + y_offset += 12 bits_text = ''.join('1' if bit in self.card.bitwise_operand else '0' for bit in reversed(range(8))) if self.card.bitwise_operand: @@ -67,7 +68,7 @@ class InfoAreaWidget(Widget): box_width=box_width) card_bits.prepare() self.surface.blit(card_bits.surface, pos()) - y_offset += card_bits.surface.get_rect().height + 4 + y_offset += card_bits.surface.get_rect().height + 12 # Actions for choice, action in enumerate(self.card.actions):