Browse Source

CURA-5128 add .gz to non sliceable extensions

Jack Ha 7 years ago
parent
commit
b75e0c75ce
1 changed files with 1 additions and 0 deletions
  1. 1 0
      plugins/GCodeGzReader/__init__.py

+ 1 - 0
plugins/GCodeGzReader/__init__.py

@@ -18,4 +18,5 @@ def getMetaData():
 
 
 def register(app):
 def register(app):
     app.addNonSliceableExtension(".gcode.gz")
     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() }
     return { "mesh_reader": GCodeGzReader.GCodeGzReader() }