From 3896ddc40c2d38bcf50f035a699cee995a20c839 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20=C5=A0ach?= Date: Fri, 13 Dec 2024 10:00:48 +0100 Subject: [PATCH] Fix error checking during bulk export There is no reason to check for file extension nor special characters when a directory is picked. --- src/slic3r/GUI/Plater.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 09586ff644..cbead96a7b 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -5947,11 +5947,6 @@ std::optional Plater::get_multiple_output_dir(const std::string &start } const fs::path output_path{into_path(dlg.GetPath())}; - if (auto error{check_output_path_has_error(output_path)}) { - const t_link_clicked on_link_clicked = [](const std::string& key) -> void { wxGetApp().jump_to_option(key); }; - ErrorDialog(this, *error, on_link_clicked).ShowModal(); - return std::nullopt; - } return output_path; }