From bf30ec439f0a92366923e777f8d2d58a12fb2a6d Mon Sep 17 00:00:00 2001 From: Enrico Turri Date: Fri, 3 May 2019 11:43:48 +0200 Subject: [PATCH] Fixed file extension when using option --export-amf in command line --- src/slic3r.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r.cpp b/src/slic3r.cpp index c3e69a189..e8f92e66d 100644 --- a/src/slic3r.cpp +++ b/src/slic3r.cpp @@ -628,7 +628,7 @@ std::string CLI::output_filepath(const Model &model, IO::ExportFormat format) co { std::string ext; switch (format) { - case IO::AMF: ext = ".amf"; break; + case IO::AMF: ext = ".zip.amf"; break; case IO::OBJ: ext = ".obj"; break; case IO::STL: ext = ".stl"; break; case IO::TMF: ext = ".3mf"; break;