diff options
Diffstat (limited to 'source/accessories/tools/leather_thimbles/thimbles.py')
-rwxr-xr-x | source/accessories/tools/leather_thimbles/thimbles.py | 4 |
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, |