clearer label

This commit is contained in:
themancalledjakob 2024-08-21 15:09:53 +02:00
parent ec7d619bab
commit 5e881ad864

View file

@ -353,7 +353,7 @@ class ABC3D_PT_FontList(bpy.types.Panel):
row = subbox.row(); row.scale_y = scale_y; row.alignment = 'CENTER' row = subbox.row(); row.scale_y = scale_y; row.alignment = 'CENTER'
row.label(text=text) row.label(text=text)
n_rows = int(len(loaded_glyphs) / n) n_rows = int(len(loaded_glyphs) / n)
box.row().label(text=f"Loaded Glyphs:") box.row().label(text=f"Loaded/Used Glyphs:")
subbox = box.box() subbox = box.box()
for i in range(0, n_rows + 1): for i in range(0, n_rows + 1):
text = ''.join([f"{u}" for ui, u in enumerate(loaded_glyphs) if ui < (i+1) * n and ui >= i * n]) text = ''.join([f"{u}" for ui, u in enumerate(loaded_glyphs) if ui < (i+1) * n and ui >= i * n])