self.border_colour = convert_colour(kwargs.pop('border_colour',
PALETTE.BLACK))
self.box_width = kwargs.pop('box_width', 0)
- self.centre = kwargs.pop('centre', False)
super(TextBoxWidget, self).__init__(*args, **kwargs)
x, y = self.padding, self.padding
for line_surface in rendered_lines:
- if self.centre and self.box_width:
+ if self.centre:
x = (width - line_surface.get_rect().width) / 2
x += self.padding
- print x, width, line_surface.get_rect().width
self.surface.blit(line_surface, (x, y))
y += line_surface.get_rect().height
for pos, img in image_map.items():