diff --git a/src/slic3r/GUI/GUI_ObjectList.cpp b/src/slic3r/GUI/GUI_ObjectList.cpp index 9ef419da81..32c6cc5f62 100644 --- a/src/slic3r/GUI/GUI_ObjectList.cpp +++ b/src/slic3r/GUI/GUI_ObjectList.cpp @@ -1970,7 +1970,8 @@ void ObjectList::load_modifier(const wxArrayString& input_files, ModelObject& mo model = Model::read_from_file(input_file, nullptr, nullptr, LoadStrategy::LoadModel); } catch (std::exception& e) { - auto msg = _L("Error!") + " " + input_file + " : " + e.what() + "."; + // auto msg = _L("Error!") + " " + input_file + " : " + e.what() + "."; + auto msg = _L("Error!") + " " + _L("Failed to get the model data in the current file."); show_error(parent, msg); return; }