From 3500d58807afd05422ec680f3f9daa8297f17b9a Mon Sep 17 00:00:00 2001
From: Elena ``of Valhalla'' Grandi <valhalla@trueelena.org>
Date: Tue, 5 Mar 2024 08:02:30 +0100
Subject: Fix sizing labels

---
 source/accessories/tools/leather_thimbles/thimbles.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'source/accessories')

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,
-- 
cgit v1.2.3