summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2024-03-05 08:02:30 +0100
committerElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2024-03-05 08:02:30 +0100
commit3500d58807afd05422ec680f3f9daa8297f17b9a (patch)
treec6b0e58fa048ff2486c3d75e68f76d5a93da02ae /source
parentffa27860292b7337174cccd96554e3c8e1bf7d7c (diff)
Fix sizing labels
Diffstat (limited to 'source')
-rwxr-xr-xsource/accessories/tools/leather_thimbles/thimbles.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/accessories/tools/leather_thimbles/thimbles.py b/source/accessories/tools/leather_thimbles/thimbles.py
index 37586ca..09cf982 100755
--- a/source/accessories/tools/leather_thimbles/thimbles.py
+++ b/source/accessories/tools/leather_thimbles/thimbles.py
@@ -78,7 +78,7 @@ class Cylindrical(hazwaz.Command):
))
size.add(dest.text(
- text=str(r),
+ text=str(r * 2),
insert=(c_x * mm, c_y * mm + 5),
text_anchor="middle",
** TEXT_STYLE,
@@ -141,7 +141,7 @@ class Cylindrical(hazwaz.Command):
))
size.add(dest.text(
- text="size: " + str(r),
+ text="size: " + str(r * 2),
insert=((r_max * 2 + 20 + 10 + 2) * mm, (y + 6) * mm + 8),
text_anchor="start",
** TEXT_STYLE,