fix typo
This commit is contained in:
parent
25ef83878a
commit
56a8ffe114
1 changed files with 1 additions and 1 deletions
|
@ -352,7 +352,7 @@ class ABC3D_PT_FontList(bpy.types.Panel):
|
|||
row = box.row(); row.scale_y = scale_y
|
||||
row.label(text=text)
|
||||
n_rows = int(len(loaded_glyphs) / n)
|
||||
box.row().label(text=f"Loaded Glyphs:", desription="")
|
||||
box.row().label(text=f"Loaded Glyphs:")
|
||||
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])
|
||||
scale_y = 0.5
|
||||
|
|
Loading…
Reference in a new issue