Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorenricoturri1966 <enricoturri@seznam.cz>2022-01-06 15:29:28 +0300
committerenricoturri1966 <enricoturri@seznam.cz>2022-01-06 15:29:28 +0300
commite031001f0a1b7d6cf9f7bc806cc8159ffe8ef78d (patch)
tree2a84425f95eecb645a4422f0c6349ae2fc518f4b /src/slic3r/GUI
parent3c43d0ae430405708c55e11e02ca6de9afe7bd47 (diff)
Follow-up of d2e495c70042900ed5e3c3085877bc66ad0f7748 - Fixed other warnings
Diffstat (limited to 'src/slic3r/GUI')
-rw-r--r--src/slic3r/GUI/Plater.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp
index e3192596a..a5ef5ffed 100644
--- a/src/slic3r/GUI/Plater.cpp
+++ b/src/slic3r/GUI/Plater.cpp
@@ -3773,8 +3773,8 @@ void Plater::priv::reload_from_disk()
for (size_t i = 0; i < replace_paths.size(); ++i) {
const auto& path = replace_paths[i].string();
for (const SelectedVolume& sel_v : selected_volumes) {
- ModelObject* old_model_object = model.objects[sel_v.object_idx];
- ModelVolume* old_volume = old_model_object->volumes[sel_v.volume_idx];
+// ModelObject* old_model_object = model.objects[sel_v.object_idx];
+// ModelVolume* old_volume = old_model_object->volumes[sel_v.volume_idx];
// bool has_source = !old_volume->source.input_file.empty() && boost::algorithm::iequals(fs::path(old_volume->source.input_file).filename().string(), fs::path(path).filename().string());
replace_volume_with_stl(sel_v.object_idx, sel_v.volume_idx, path, "");
}