From 36815f977d7236311e9b345c33fbc74390766385 Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Wed, 21 Jul 2021 17:25:11 +0200 Subject: label hard to find troubleshoot objects (#1247) --- lib/extensions/troubleshoot.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/extensions/troubleshoot.py') diff --git a/lib/extensions/troubleshoot.py b/lib/extensions/troubleshoot.py index 39c68d86..8e37acc3 100644 --- a/lib/extensions/troubleshoot.py +++ b/lib/extensions/troubleshoot.py @@ -93,6 +93,8 @@ class Troubleshoot(InkstitchExtension): tspan = etree.Element(SVG_TSPAN_TAG) tspan.text = problem.name + if problem.label: + tspan.text += " (%s)" % problem.label text.append(tspan) def create_troubleshoot_layer(self): -- cgit v1.2.3