diff --git a/src/GUI/Plater/PresetChooser.cpp b/src/GUI/Plater/PresetChooser.cpp index 8e45fae3c..d6ab80896 100644 --- a/src/GUI/Plater/PresetChooser.cpp +++ b/src/GUI/Plater/PresetChooser.cpp @@ -63,7 +63,7 @@ void PresetChooser::load(std::array presets) { // show default names if no other presets visible. if (current_list.size() > 1) { - current_list = grep(presets.at(get_preset(group)), [] (const Preset& x) -> bool { return !x.default_preset; }); + current_list = grep(current_list, [] (const Preset& x) -> bool { return !x.default_preset; }); } // # Read the current defaults from the settings file