diff --git a/.gitignore b/.gitignore index dcc8e7b..a482dd2 100644 --- a/.gitignore +++ b/.gitignore @@ -168,3 +168,8 @@ dmypy.json ### VisualStudioCode Patch ### # Ignore all local history of files .history + + +# And bits of my own stupid. +*.orig +*.bak diff --git a/infotext.py b/infotext.py index a2fcbce..4ff1ce3 100644 --- a/infotext.py +++ b/infotext.py @@ -693,7 +693,8 @@ def mesh_options(output_text, p: prefs.InfotextAddonPrefs, obj: bpy.types.Object (" users", p.color_setting, p.text_size_normal), ]) if obj.active_material.use_fake_user: - output_text.extend([(" ,FAKE USER ", p.color_setting, p.text_size_normal)]) + real = obj.active_material.users - 1 + output_text.extend([(f" ({real} real, 1 fake)", p.color_setting, p.text_size_normal)]) else: output_text.extend(["CR", ("SLOT ONLY", p.color_title, p.text_size_normal)])