Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuSanka <yusanka@gmail.com>2022-01-31 12:18:56 +0300
committerYuSanka <yusanka@gmail.com>2022-01-31 12:19:09 +0300
commit1a57db092f57cd72280fa0cfecf890fbfea1633f (patch)
tree7fbd283d4e1565e01b044858d73552404eb7e735
parent58d64bae7762e225a9755a79c80068f56a81b5f5 (diff)
Print Settings: "Output options": Switched a places of "Post-processing scripts" and "G-code substitutions"
-rw-r--r--src/slic3r/GUI/Tab.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp
index bdebb5833..225887c98 100644
--- a/src/slic3r/GUI/Tab.cpp
+++ b/src/slic3r/GUI/Tab.cpp
@@ -1689,18 +1689,6 @@ void TabPrint::build()
option.opt.full_width = true;
optgroup->append_single_option_line(option);
- optgroup = page->new_optgroup(L("Post-processing scripts"), 0);
- line = { "", "" };
- line.full_width = 1;
- line.widget = [this](wxWindow* parent) {
- return description_line_widget(parent, &m_post_process_explanation);
- };
- optgroup->append_line(line);
- option = optgroup->get_option("post_process");
- option.opt.full_width = true;
- option.opt.height = 5;//50;
- optgroup->append_single_option_line(option);
-
optgroup = page->new_optgroup(L("Other"));
create_line_with_widget(optgroup.get(), "gcode_substitutions", "g-code-substitutions_301694", [this](wxWindow* parent) {
@@ -1713,6 +1701,18 @@ void TabPrint::build()
};
optgroup->append_line(line);
+ optgroup = page->new_optgroup(L("Post-processing scripts"), 0);
+ line = { "", "" };
+ line.full_width = 1;
+ line.widget = [this](wxWindow* parent) {
+ return description_line_widget(parent, &m_post_process_explanation);
+ };
+ optgroup->append_line(line);
+ option = optgroup->get_option("post_process");
+ option.opt.full_width = true;
+ option.opt.height = 5;//50;
+ optgroup->append_single_option_line(option);
+
page = add_options_page(L("Notes"), "note.png");
optgroup = page->new_optgroup(L("Notes"), 0);
option = optgroup->get_option("notes");