From f27381533ce38162ecce21f4393aba5fa9897a41 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Sun, 21 Sep 2025 16:13:45 +0800 Subject: [PATCH] Fix a crash issue when importing a 3MF file saved from version 2.3.1-alpha as geometry only --- src/slic3r/GUI/Plater.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 42217a310b..a99f608247 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -3853,7 +3853,7 @@ std::vector Plater::priv::load_files(const std::vector& input_ // } // } // Orca: check if the project is created with OrcaSlicer 2.3.1-alpha and use the sparse infill rotation template for non-safe infill patterns - else if ((file_version < app_version) && file_version == Semver("2.3.1-alpha")) { + else if (load_config && (file_version < app_version) && file_version == Semver("2.3.1-alpha")) { if (!config_loaded.opt_string("sparse_infill_rotate_template").empty()) { const auto _sparse_infill_pattern = config_loaded.option>("sparse_infill_pattern")->value;