This commit is contained in:
themancalledjakob 2024-08-21 14:43:45 +02:00
parent 25ef83878a
commit 56a8ffe114

View file

@ -352,7 +352,7 @@ class ABC3D_PT_FontList(bpy.types.Panel):
row = box.row(); row.scale_y = scale_y row = box.row(); row.scale_y = scale_y
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:", desription="") box.row().label(text=f"Loaded Glyphs:")
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])
scale_y = 0.5 scale_y = 0.5