X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=blender_export.py;h=73d17059d19fded822a9af16c95c818104bae03d;hb=b3ca3b7a45eec11c46eb19772e10021177665adb;hp=84dc3a72b18572c0b62e698c3ed2717a6067c02c;hpb=c34dde859968ced3dc7e8dd7be29f676689813d3;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/blender_export.py b/blender_export.py index 84dc3a7..73d1705 100644 --- a/blender_export.py +++ b/blender_export.py @@ -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 )