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:
Diffstat (limited to 'src/slic3r/GUI/Tab.cpp')
-rw-r--r--src/slic3r/GUI/Tab.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp
index a8fcce485..43d0392d1 100644
--- a/src/slic3r/GUI/Tab.cpp
+++ b/src/slic3r/GUI/Tab.cpp
@@ -1953,6 +1953,16 @@ bool Tab::create_pages(std::string setting_type_name, int idx_page)
};
current_group->append_line(current_line);
current_page->descriptions.push_back("volumetric_speed");
+ } else if(boost::starts_with(full_line, "support_object_elevation_description")) {
+ TabSLAPrint* tab = nullptr;
+ if ((tab = dynamic_cast<TabSLAPrint*>(this)) == nullptr) continue;
+ Line line{ "", "" };
+ line.full_width = 1;
+ line.widget = [this, tab](wxWindow* parent) {
+ return description_line_widget(parent, &(tab->m_support_object_elevation_description_line));
+ };
+ current_group->append_line(line);
+ current_page->descriptions.push_back("support_object_elevation");
} else if (boost::starts_with(full_line, "print_host_upload_description")) {
TabPrinter* tab = nullptr;
if ((tab = dynamic_cast<TabPrinter*>(this)) == nullptr) continue;