Implemented possibility to set extruder sequence for whole print

This commit is contained in:
YuSanka 2019-10-18 12:35:35 +02:00
parent ea8695c06c
commit 33ba6fe4c6
9 changed files with 445 additions and 29 deletions

View file

@ -13,6 +13,7 @@ class wxBoxSizer;
class wxStaticText;
class wxChoice;
class wxComboCtrl;
class wxBitmapComboBox;
class wxCheckBox;
class DoubleSlider;
@ -102,8 +103,8 @@ class Preview : public wxPanel
bool m_loaded;
bool m_enabled;
DoubleSlider* m_slider {nullptr};
wxComboBox* m_extruder_selector {nullptr};
DoubleSlider* m_slider {nullptr};
wxBitmapComboBox* m_extruder_selector {nullptr};
public:
Preview(wxWindow* parent, Bed3D& bed, Camera& camera, GLToolbar& view_toolbar, Model* model, DynamicPrintConfig* config,