X-Git-Url: https://git.ctpug.org.za/?p=naja.git;a=blobdiff_plain;f=naja%2Fwidgets%2Finfo_area.py;h=e348048208faf89b74ce209cc3567a8bd7347e43;hp=36b375533f0c497f68f80151b7e9357b8f64b792;hb=a50a8a391693f50590b7de9ed9c89c9a576af05c;hpb=f6932374aba84c3629e1f94d8e62696d601d3722 diff --git a/naja/widgets/info_area.py b/naja/widgets/info_area.py index 36b3755..e348048 100644 --- a/naja/widgets/info_area.py +++ b/naja/widgets/info_area.py @@ -54,13 +54,6 @@ class InfoAreaWidget(Widget): y_offset = 0 pos = lambda: (INFO_LEFT_PADDING, y_offset) - # Top title - title = TextWidget( - pos(), TITLES[self.state.gameboard.player_mode], - colour=PALETTE.WHITE) - title.render(self.surface) - y_offset += title.surface.get_rect().height - 4 - # Bits bits_text = ''.join('1' if bit in self.card.bitwise_operand else '0' for bit in reversed(range(8))) @@ -68,9 +61,12 @@ class InfoAreaWidget(Widget): bits_text = '%s %s' % ( bits_text, bit_glyphs(self.card.bitwise_operand)) card_bits = TextBoxWidget( - pos(), bits_text, box_width=box_width, - colour=PALETTE.LIGHT_TURQUOISE, bg_colour=PALETTE.BLACK) - card_bits.render(self.surface) + (0, 0), bits_text, padding=4, centre=True, + colour=PALETTE.WHITE, border=2, + bg_colour=PALETTE.BLACK, border_colour=PALETTE.BLUE, + box_width=box_width) + card_bits.prepare() + self.surface.blit(card_bits.surface, pos()) y_offset += card_bits.surface.get_rect().height + 4 # Actions