diff --git a/src/slic3r/GUI/Selection.cpp b/src/slic3r/GUI/Selection.cpp index e54b1cec5b..9ce13693b6 100644 --- a/src/slic3r/GUI/Selection.cpp +++ b/src/slic3r/GUI/Selection.cpp @@ -290,8 +290,6 @@ void Selection::add_volume(unsigned int object_idx, unsigned int volume_idx, int (as_single_selection && matches(volume_idxs))) return; - wxGetApp().plater()->take_snapshot(_(L("Selection-Add Volume"))); - // resets the current list if needed if (as_single_selection) clear(); @@ -309,8 +307,6 @@ void Selection::remove_volume(unsigned int object_idx, unsigned int volume_idx) if (!m_valid) return; - wxGetApp().plater()->take_snapshot(_(L("Selection-Remove Volume"))); - for (unsigned int i = 0; i < (unsigned int)m_volumes->size(); ++i) { GLVolume* v = (*m_volumes)[i]; @@ -331,8 +327,6 @@ void Selection::add_volumes(EMode mode, const std::vector& volume_ (as_single_selection && matches(volume_idxs))) return; - wxGetApp().plater()->take_snapshot(_(L("Selection-Add Volumes"))); - // resets the current list if needed if (as_single_selection) clear(); @@ -353,8 +347,6 @@ void Selection::remove_volumes(EMode mode, const std::vector& volu if (!m_valid) return; - wxGetApp().plater()->take_snapshot(_(L("Selection-Remove Volumes"))); - m_mode = mode; for (unsigned int i : volume_idxs) {