summaryrefslogtreecommitdiff
path: root/lib/extensions
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2025-05-11 07:12:35 +0200
committerGitHub <noreply@github.com>2025-05-11 07:12:35 +0200
commit1cf2359089e0e0599f277008d7e3a4b15f0e45b8 (patch)
tree18aa3a257ac95323baf545afb641a1a8edf18ce1 /lib/extensions
parent9bc8210303d144f83ed386df8b8ea3fca562ceac (diff)
add quilting formats to zip export arguments (#3718)
Diffstat (limited to 'lib/extensions')
-rw-r--r--lib/extensions/zip.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/extensions/zip.py b/lib/extensions/zip.py
index e9dcefcb..13cae7bd 100644
--- a/lib/extensions/zip.py
+++ b/lib/extensions/zip.py
@@ -36,7 +36,7 @@ class Zip(InkstitchExtension):
# it's kind of obnoxious that I have to do this...
self.formats = []
for format in pyembroidery.supported_formats():
- if 'writer' in format and format['category'] in ['embroidery', 'color', 'image', 'stitch']:
+ if 'writer' in format and format['category'] in ['embroidery', 'color', 'image', 'stitch', 'quilting']:
extension = format['extension']
self.arg_parser.add_argument('--format-%s' % extension, type=Boolean, default=False, dest=extension)
self.formats.append(extension)