X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fwidgets%2Finfo_area.py;h=ef3f017fbc4b661efaa1d42ed89909909b11961c;hb=3e460450c1baa9af43f5391ba4673a599071656b;hp=c7617f2e1a2700c1370a468f84dace18ca85b67e;hpb=641b5f0ed7606c551a26a7336f2c4ab66006e7d7;p=naja.git diff --git a/naja/widgets/info_area.py b/naja/widgets/info_area.py index c7617f2..ef3f017 100644 --- a/naja/widgets/info_area.py +++ b/naja/widgets/info_area.py @@ -5,7 +5,7 @@ import pygame import pygame.locals as pgl from naja.constants import ( - INFO_SIZE, EIGHT_BIT_SCALE, ACT, KEYS, EXAMINE, PALETTE, + INFO_SIZE, ACT, KEYS, EXAMINE, PALETTE, ACTION_TEXT_OFFSET, INFO_LEFT_PADDING) from naja.events import finish_event from naja.resources import resources @@ -77,7 +77,7 @@ class InfoAreaWidget(Widget): hint_text += HINT_LEGAL_MOVE hint = TextBoxWidget((4, 0), hint_text, padding=2, - box_width=(INFO_SIZE[0] - 4) // EIGHT_BIT_SCALE) + box_width=(INFO_SIZE[0] - 4)) hint.prepare() y_offset = ( INFO_SIZE[1] - hint.surface.get_rect().height - INFO_LEFT_PADDING @@ -94,8 +94,7 @@ class InfoAreaWidget(Widget): text = TextBoxWidget( (x_offset, y_offset), action.get_text(self.card), - box_width=(INFO_SIZE[0] - 16) // EIGHT_BIT_SCALE, - fontsize=28, colour=text_colour) + box_width=(INFO_SIZE[0] - 16), fontsize=28, colour=text_colour) text.render(self.surface) border_colour = None