Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Matena <lukasmatena@seznam.cz>2022-08-11 15:45:12 +0300
committerLukas Matena <lukasmatena@seznam.cz>2022-08-11 17:49:13 +0300
commitf548f8540532f66d41fc003657d1f207ea4174ce (patch)
treee613127e8aa729326ec09ef9a7961c2c11e9c6cc
parent41f5bd006a94c944685e87d68c1634ff76d45ed5 (diff)
STEP: Show STEP in model import file dialog title
-rw-r--r--src/slic3r/GUI/GUI_App.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp
index 6362dc609..c25f06ff6 100644
--- a/src/slic3r/GUI/GUI_App.cpp
+++ b/src/slic3r/GUI/GUI_App.cpp
@@ -1868,7 +1868,7 @@ void GUI_App::import_model(wxWindow *parent, wxArrayString& input_files) const
{
input_files.Clear();
wxFileDialog dialog(parent ? parent : GetTopWindow(),
- _L("Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):"),
+ _L("Choose one or more files (STL/OBJ/AMF/3MF/PRUSA/STEP):"),
from_u8(app_config->get_last_dir()), "",
file_wildcards(FT_MODEL), wxFD_OPEN | wxFD_MULTIPLE | wxFD_FILE_MUST_EXIST);