From 4870656877f209bed31a341d035ba44b34fbcc9c Mon Sep 17 00:00:00 2001 From: enricoturri1966 Date: Fri, 4 Dec 2020 09:15:55 +0100 Subject: [PATCH] Import all valid files when dragging and dropping a set of files on the application --- src/slic3r/GUI/Plater.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 507bbe2187..5e697c5c26 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -4933,7 +4933,7 @@ bool Plater::load_files(const wxArrayString& filenames) else if (std::regex_match(path.string(), pattern_gcode_drop)) start_new_gcodeviewer(&filename); else - return false; + continue; } if (paths.empty()) // Likely all paths processed were gcodes, for which a G-code viewer instance has hopefully been started.