From 5f23dea1a1fa1708cc66d6aa951970bbd927515f Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Wed, 26 Jun 2024 22:51:15 +0200 Subject: Make PNG (simple/realistic) and threadlist available in export file formats (#3019) --- lib/inx/outputs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/inx/outputs.py') 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): -- cgit v1.2.3