From 65f440c2bafa82973217b64db85fa4ff1900a5dc Mon Sep 17 00:00:00 2001 From: YuSanka Date: Fri, 18 Jun 2021 12:22:59 +0200 Subject: [PATCH] Follow-up https://github.com/prusa3d/PrusaSlicer/commit/e3000c5305cb944741838b73212af88ef23027fd - Fixed OSX build --- src/slic3r/GUI/Plater.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index a78c0f608..3fc12457a 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -3147,9 +3147,6 @@ void Plater::priv::replace_with_stl() input_path = volume->source.input_file; wxString title = _L("Please select the file to replace"); -#if defined(__APPLE__) - title += " (" + from_u8(search.filename().string()) + ")"; -#endif // __APPLE__ title += ":"; wxFileDialog dialog(q, title, "", from_u8(input_path.filename().string()), file_wildcards(FT_MODEL), wxFD_OPEN | wxFD_FILE_MUST_EXIST); if (dialog.ShowModal() != wxID_OK)