diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 5b838b4f5..9952556aa 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -4367,7 +4367,7 @@ std::vector Plater::priv::load_files(const std::vector& input_ for (ModelVolume *model_volume : model_object->volumes) model_volume->config.reset(); } } - else if (load_config && (file_version.maj() == app_version.maj()) && (file_version.min() > app_version.min())) { + else if (load_config && (file_version > app_version)) { Semver cloud_ver; if (wxGetApp().app_config->has("app", "cloud_version")) { std::string cloud_version = wxGetApp().app_config->get("app", "cloud_version");