Vertically centre the bits box.
authorSimon Cross <hodgestar@gmail.com>
Sat, 17 May 2014 21:35:44 +0000 (23:35 +0200)
committerSimon Cross <hodgestar@gmail.com>
Sat, 17 May 2014 21:35:44 +0000 (23:35 +0200)
naja/widgets/info_area.py

index e348048208faf89b74ce209cc3567a8bd7347e43..453e379d1be743a52891a565e9ae4442bc72b77a 100644 (file)
@@ -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):