From 81b9997009dff288984caa68e06e95bb1000bc62 Mon Sep 17 00:00:00 2001 From: enricoturri1966 Date: Wed, 2 Feb 2022 14:59:21 +0100 Subject: [PATCH] Follow-up of 7d8749077743a9c197726539d8eb6a5a036e5e41 - Fix into function reloadable_volumes() --- 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 ecdd857e1..54232ca87 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -3545,7 +3545,7 @@ static std::vector> reloadable_volumes(const Model& model, c if (0 <= v_idx && v_idx < int(obj->volumes.size())) { const ModelVolume* vol = obj->volumes[v_idx]; if (!vol->source.is_from_builtin_objects && !vol->source.input_file.empty() && - vol->source.input_file != obj->input_file && !fs::path(vol->source.input_file).extension().string().empty()) + !fs::path(vol->source.input_file).extension().string().empty()) ret.push_back({ o_idx, v_idx }); } }