summaryrefslogtreecommitdiff
path: root/lib/extensions/element_info.py
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2023-10-15 14:47:46 +0200
committerGitHub <noreply@github.com>2023-10-15 14:47:46 +0200
commit6f0150db0092e5001c89a560c21e687eb174bac8 (patch)
treef9f46ae5826026cf49e9c019af1f8fa97de4f403 /lib/extensions/element_info.py
parentcea4f6fca893837934e3337d9e80be0495c37d82 (diff)
element info: add more info (#2556)
* add removed stitches info * add color info
Diffstat (limited to 'lib/extensions/element_info.py')
-rw-r--r--lib/extensions/element_info.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/extensions/element_info.py b/lib/extensions/element_info.py
index a086108b..894dfe98 100644
--- a/lib/extensions/element_info.py
+++ b/lib/extensions/element_info.py
@@ -39,6 +39,7 @@ class ElementInfo(InkstitchExtension):
self.list_items.append(ListItem(
name=f"{ element.node.label } ({ element.node.get_id() })",
+ value=stitch_groups[0].color,
headline=True
))
self.list_items.append(ListItem(
@@ -72,6 +73,7 @@ class ElementInfo(InkstitchExtension):
))
stitch_lengths = []
+ removed_stitches = 0
for group in stitch_groups:
stitches = group.stitches
@@ -80,6 +82,7 @@ class ElementInfo(InkstitchExtension):
st = stitch - previous_stitch
length = st.length() / PIXELS_PER_MM
if length <= self.metadata['min_stitch_len_mm']:
+ removed_stitches += 1
continue
stitch_lengths.append(length)
previous_stitch = stitch
@@ -93,6 +96,10 @@ class ElementInfo(InkstitchExtension):
value=str(stitch_plan.num_stitches - stitch_plan.num_jumps) + stitches_per_group
))
self.list_items.append(ListItem(
+ name=_("Small stitches (removed)"),
+ value=str(removed_stitches)
+ ))
+ self.list_items.append(ListItem(
name=_("Jumps"),
value=str(stitch_plan.num_jumps - 1)
))