X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fwidgets%2Finfo_area.py;h=34bbec746df01e9756ae092e31d1a9811922b96c;hb=68445d365c053ecfad14680003a6fce97453ef13;hp=50164eaa48599a1dc07208c3d8fa24a25f4f9d6c;hpb=03a118a3e62b13b477c1308514235a7533083d2c;p=naja.git diff --git a/naja/widgets/info_area.py b/naja/widgets/info_area.py index 50164ea..34bbec7 100644 --- a/naja/widgets/info_area.py +++ b/naja/widgets/info_area.py @@ -148,14 +148,14 @@ class InfoAreaWidget(Widget): else: glyphs_x_offset = INFO_LEFT_PADDING - for glyph in action.GLYPHS: + for glyph in action.get_glyphs(): img = resources.get_image( glyph, transforms=(EIGHT_BIT, blender(PALETTE.GREY))) self.surface.blit(img, (glyphs_x_offset, glyphs_y_offset - 4)) glyphs_x_offset += img.get_width() - if action.MSB_GLYPH is not None: + if action.get_msb_glyph() is not None: img = resources.get_image( - action.MSB_GLYPH, + action.get_msb_glyph(), transforms=(EIGHT_BIT, blender(PALETTE.LIGHT_VIOLET))) self.surface.blit(img, (glyphs_x_offset, glyphs_y_offset - 4))