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:
authorVojtech Kral <vojtech@kral.hk>2018-10-04 12:12:55 +0300
committerVojtech Kral <vojtech@kral.hk>2018-10-08 18:41:37 +0300
commit1f926964ee0d93ce0044c75f76aee52d5db15dfd (patch)
treed0144ebfe36b958bfab615e7019d84c6f3b489a2 /src/slic3r/GUI/BedShapeDialog.cpp
parent99fe5761d8fca6349b924cb5c02198aed39ddb94 (diff)
WIP: Plater, build fixes
Diffstat (limited to 'src/slic3r/GUI/BedShapeDialog.cpp')
-rw-r--r--src/slic3r/GUI/BedShapeDialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/BedShapeDialog.cpp b/src/slic3r/GUI/BedShapeDialog.cpp
index 7c019599a..407da7ae3 100644
--- a/src/slic3r/GUI/BedShapeDialog.cpp
+++ b/src/slic3r/GUI/BedShapeDialog.cpp
@@ -292,7 +292,7 @@ void BedShapePanel::update_shape()
void BedShapePanel::load_stl()
{
auto dialog = new wxFileDialog(this, _(L("Choose a file to import bed shape from (STL/OBJ/AMF/3MF/PRUSA):")), "", "",
- MODEL_WILDCARD, wxFD_OPEN | wxFD_FILE_MUST_EXIST);
+ file_wildcards[FT_MODEL], wxFD_OPEN | wxFD_FILE_MUST_EXIST);
if (dialog->ShowModal() != wxID_OK) {
dialog->Destroy();
return;