diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2024-06-26 22:51:15 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-26 22:51:15 +0200 |
| commit | 5f23dea1a1fa1708cc66d6aa951970bbd927515f (patch) | |
| tree | 859216fde8fcba8ebbec05cf2323f7a7dee8a4a8 /lib/inx/outputs.py | |
| parent | d2e571a3fbfa82baa1c0411fb4ee277692f574d3 (diff) | |
Make PNG (simple/realistic) and threadlist available in export file formats (#3019)
Diffstat (limited to 'lib/inx/outputs.py')
| -rw-r--r-- | lib/inx/outputs.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/inx/outputs.py b/lib/inx/outputs.py index 21014744..af2766ea 100644 --- a/lib/inx/outputs.py +++ b/lib/inx/outputs.py @@ -20,7 +20,8 @@ def pyembroidery_output_formats(): description = "%s [STITCH]" % description elif format['category'] != "embroidery": description = "%s [DEBUG]" % description - yield format['extension'], description, format['mimetype'], format['category'] + if not format['extension'] == 'png': + yield format['extension'], description, format['mimetype'], format['category'] def generate_output_inx_files(alter_data): |
