Make action.MSB_GLYPH a function, action.get_msb_glyph.
[naja.git] / naja / widgets / info_area.py
index 40dcdc031d68267388f52b32644107a0811495ba..34bbec746df01e9756ae092e31d1a9811922b96c 100644 (file)
@@ -153,9 +153,9 @@ class InfoAreaWidget(Widget):
                 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))