From 5e881ad8645f9fc4a16c2dfb96cf1767dda20cd0 Mon Sep 17 00:00:00 2001 From: themancalledjakob Date: Wed, 21 Aug 2024 15:09:53 +0200 Subject: [PATCH] clearer label --- __init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index 1012be1..d372dd0 100644 --- a/__init__.py +++ b/__init__.py @@ -353,7 +353,7 @@ class ABC3D_PT_FontList(bpy.types.Panel): row = subbox.row(); row.scale_y = scale_y; row.alignment = 'CENTER' row.label(text=text) 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() 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])