clearer label
This commit is contained in:
parent
ec7d619bab
commit
5e881ad864
1 changed files with 1 additions and 1 deletions
|
@ -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])
|
||||||
|
|
Loading…
Reference in a new issue