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

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2019-04-13 15:45:35 +0300
committerbubnikv <bubnikv@gmail.com>2019-04-13 15:45:35 +0300
commit255a4e05dca6b227c7880ae369823e2c92990d1d (patch)
treeb9211c3058629908bb8d3381621d4f79b84a4576 /src/slic3r/GUI/MainFrame.hpp
parent1e455bc0654c4764e7231b9d41a919be065e7dcd (diff)
Fix of "Repir from File menu doesn't save the file #2064"
The file was saved, albeit using an "obj" format, but into a file with an ".stl" extension. The software was fixed to propose a file to save with a correct ".obj" extension.
Diffstat (limited to 'src/slic3r/GUI/MainFrame.hpp')
-rw-r--r--src/slic3r/GUI/MainFrame.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/MainFrame.hpp b/src/slic3r/GUI/MainFrame.hpp
index 625e70b83..a5d3a1f6d 100644
--- a/src/slic3r/GUI/MainFrame.hpp
+++ b/src/slic3r/GUI/MainFrame.hpp
@@ -54,7 +54,7 @@ class MainFrame : public DPIFrame
PrintHostQueueDialog *m_printhost_queue_dlg;
- std::string get_base_name(const wxString &full_name) const;
+ std::string get_base_name(const wxString &full_name, const char *extension = nullptr) const;
std::string get_dir_name(const wxString &full_name) const;
void on_presets_changed(SimpleEvent&);