From f1dd85309b11b63d579900a80f45ac11a647af7e Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Tue, 28 Mar 2023 12:11:04 +0200 Subject: [PATCH] Add back sla svg export alias --- src/libslic3r/Format/SLAArchiveWriter.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/libslic3r/Format/SLAArchiveWriter.cpp b/src/libslic3r/Format/SLAArchiveWriter.cpp index 92f5fe3ec..b28c2c680 100644 --- a/src/libslic3r/Format/SLAArchiveWriter.cpp +++ b/src/libslic3r/Format/SLAArchiveWriter.cpp @@ -29,6 +29,10 @@ static const std::map REGISTERED_ARCHIVES { "SL1SVG", { "sl1_svg", [] (const auto &cfg) { return std::make_unique(cfg); } } }, + { + "SL2", + { "sl1_svg", [] (const auto &cfg) { return std::make_unique(cfg); } } + }, { "pwmx", { "pwmx", [] (const auto &cfg) { return std::make_unique(cfg); } }