From: Neil Date: Sat, 17 May 2014 10:15:51 +0000 (+0200) Subject: Tweak infobar layout yet again X-Git-Tag: 0.1~132 X-Git-Url: https://git.ctpug.org.za/?p=naja.git;a=commitdiff_plain;h=d9e309863a094fb56d21308396b635adf78e4684 Tweak infobar layout yet again --- diff --git a/naja/widgets/info_area.py b/naja/widgets/info_area.py index 5baa517..a122b6f 100644 --- a/naja/widgets/info_area.py +++ b/naja/widgets/info_area.py @@ -62,7 +62,7 @@ class InfoAreaWidget(Widget): bits_text = '%s %s' % ( bits_text, bit_glyphs(self.card.bitwise_operand)) card_bits = TextBoxWidget((INFO_LEFT_PADDING, y_offset), bits_text, - box_width=INFO_SIZE[0], + box_width=(INFO_SIZE[0] - INFO_LEFT_PADDING), colour=PALETTE.LIGHT_TURQUOISE, bg_colour=PALETTE.BLACK) card_bits.render(self.surface) @@ -76,8 +76,8 @@ class InfoAreaWidget(Widget): if self.card_position in self.state.player.legal_moves(): hint_text += HINT_LEGAL_MOVE - hint = TextBoxWidget((4, 0), hint_text, padding=2, - box_width=(INFO_SIZE[0] - 4)) + hint = TextBoxWidget((0, 0), hint_text, padding=4, + box_width=(INFO_SIZE[0] - INFO_LEFT_PADDING - 8)) hint.prepare() y_offset = ( INFO_SIZE[1] - hint.surface.get_rect().height - INFO_LEFT_PADDING @@ -94,7 +94,8 @@ class InfoAreaWidget(Widget): text = TextBoxWidget( (x_offset, y_offset), action.get_text(self.card), - box_width=(INFO_SIZE[0] - 16), fontsize=28, colour=text_colour) + box_width=(INFO_SIZE[0] - INFO_LEFT_PADDING - 8), + fontsize=28, colour=text_colour) text.render(self.surface) border_colour = None