Updated PrintConfig default values for machine limits

+ fixed incorrect default value setting for the TextCtrl
This commit is contained in:
YuSanka 2018-06-22 16:13:34 +02:00
parent 3fdefbfbea
commit 54c90ee948
5 changed files with 41 additions and 26 deletions

View file

@ -1734,7 +1734,7 @@ void TabPrinter::append_option_line(ConfigOptionsGroupShp optgroup, const std::s
optgroup->append_line(line);
}
PageShp TabPrinter::create_kinematics_page()
PageShp TabPrinter::build_kinematics_page()
{
auto page = add_options_page(_(L("Machine limits")), "cog.png", true);
@ -1806,7 +1806,7 @@ void TabPrinter::build_extruder_pages()
}
if (existed_page < n_before_extruders && is_marlin_flavor){
auto page = create_kinematics_page();
auto page = build_kinematics_page();
m_pages.insert(m_pages.begin() + n_before_extruders, page);
}