imgui stuff
[carveJwlIkooP6JGAAIwe30JlM.git] / blender_export.py
index 84dc3a72b18572c0b62e698c3ed2717a6067c02c..73d17059d19fded822a9af16c95c818104bae03d 100644 (file)
@@ -2413,7 +2413,8 @@ class SR_UL_FONT_GLYPH_LIST(bpy.types.UIList):
       s1 = c.split(factor=0.3)
       c = s1.column()
       row = c.row()
-      lbl = chr(item.utf32) if item.utf32 >= 32 and item.utf32 <= 126 else 'ERR'
+      lbl = chr(item.utf32) if item.utf32 >= 32 and item.utf32 <= 126 else \
+                                                              f'x{item.utf32:x}'
       row.label(text=lbl)
       c = s1.column()
       c.prop( item, 'utf32', text='', emboss=True )