diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2024-07-16 20:36:15 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-16 20:36:15 +0200 |
| commit | ef1a483b2d9350aa8c69498c1ff3386e2c9e563e (patch) | |
| tree | 419e0e46c71553de58debbcc306d694368e225b4 | |
| parent | 6a39662fd15a36a656ad1cf5779c865890d789b3 (diff) | |
threadlist: size comma to x (#3088)
| -rw-r--r-- | lib/extensions/thread_list.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/extensions/thread_list.py b/lib/extensions/thread_list.py index a9d2b8d2..17c84dcc 100644 --- a/lib/extensions/thread_list.py +++ b/lib/extensions/thread_list.py @@ -49,7 +49,7 @@ def get_threadlist(stitch_plan, design_name): thread_output += f": {design_name}\n" thread_output += _("Size") - thread_output += f" (mm): {width}, {height}\n" + thread_output += f" (mm): {width} x {height}\n" thread_output += _("Stitches") thread_output += f": {stitch_plan.num_stitches}\n" |
