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:
authorEnrico Turri <enricoturri@seznam.cz>2019-07-02 16:10:59 +0300
committerEnrico Turri <enricoturri@seznam.cz>2019-07-02 16:10:59 +0300
commit2a71665de90f043d25a9b8f52281a1fc1072fdf2 (patch)
tree8e7eac29a35a3547ddeca3e3105d0b021b552604 /src/slic3r/GUI/BedShapeDialog.cpp
parent136e5156bc0b9fcbeeda52dcbab8f9f993ba639e (diff)
Follow-up of d07b3fb08b5f8e81899a4772f8219fde49ef2126 -> Show current bed shape for custom bed in bed shape dialog
Diffstat (limited to 'src/slic3r/GUI/BedShapeDialog.cpp')
-rw-r--r--src/slic3r/GUI/BedShapeDialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/slic3r/GUI/BedShapeDialog.cpp b/src/slic3r/GUI/BedShapeDialog.cpp
index cec0f5067..20aa68ef2 100644
--- a/src/slic3r/GUI/BedShapeDialog.cpp
+++ b/src/slic3r/GUI/BedShapeDialog.cpp
@@ -234,8 +234,8 @@ void BedShapePanel::set_shape(ConfigOptionPoints* points)
// This is a custom bed shape, use the polygon provided.
m_shape_options_book->SetSelection(SHAPE_CUSTOM);
// Copy the polygon to the canvas, make a copy of the array.
- m_canvas->m_bed_shape = points->values;
- update_shape();
+ m_loaded_bed_shape = points->values;
+ update_shape();
}
void BedShapePanel::update_preview()