From b75e0c75cec6520cd8e8a2d4f59334e14912d4bd Mon Sep 17 00:00:00 2001 From: Jack Ha Date: Thu, 22 Mar 2018 14:23:16 +0100 Subject: [PATCH] CURA-5128 add .gz to non sliceable extensions --- plugins/GCodeGzReader/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/GCodeGzReader/__init__.py b/plugins/GCodeGzReader/__init__.py index 67424a7d45..d1f3cf34b1 100644 --- a/plugins/GCodeGzReader/__init__.py +++ b/plugins/GCodeGzReader/__init__.py @@ -18,4 +18,5 @@ def getMetaData(): def register(app): app.addNonSliceableExtension(".gcode.gz") + app.addNonSliceableExtension(".gz") # in some parts only the last extension is taken. Let's make it a non sliceable extension for now return { "mesh_reader": GCodeGzReader.GCodeGzReader() }