Make action.GLYPHS a function, action.get_glyphs.
[naja.git] / naja / widgets / info_area.py
index 50164eaa48599a1dc07208c3d8fa24a25f4f9d6c..40dcdc031d68267388f52b32644107a0811495ba 100644 (file)
@@ -148,7 +148,7 @@ 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))