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>2020-01-07 16:08:21 +0300
committerbubnikv <bubnikv@gmail.com>2020-01-07 16:08:35 +0300
commit70bc392003738cf30882f40ca9a7501b24db80f8 (patch)
tree722466c55a389baaa2e92b80e41b765707846409 /src/slic3r/GUI/Preset.hpp
parent8559360cf8314c0630b1a5774c317db6adb3dbe6 (diff)
Support for Vendor / Printer Model specific print bed texture and model.
Diffstat (limited to 'src/slic3r/GUI/Preset.hpp')
-rw-r--r--src/slic3r/GUI/Preset.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/slic3r/GUI/Preset.hpp b/src/slic3r/GUI/Preset.hpp
index 547814559..55791eb09 100644
--- a/src/slic3r/GUI/Preset.hpp
+++ b/src/slic3r/GUI/Preset.hpp
@@ -61,6 +61,9 @@ public:
PrinterTechnology technology;
std::string family;
std::vector<PrinterVariant> variants;
+ // Vendor & Printer Model specific print bed model & texture.
+ std::string bed_model;
+ std::string bed_texture;
PrinterVariant* variant(const std::string &name) {
for (auto &v : this->variants)