Bugfix: User must not enter slope angle for ramping z-hop over 90 degrees.

This commit is contained in:
Martin Šach 2023-11-09 12:27:11 +01:00 committed by SachCZ
parent 02efa7af17
commit 353c9c2ea9

View File

@ -2339,7 +2339,7 @@ void PrintConfigDef::init_fff_params()
"This number indicates the slope of the travel as mm raised per mm traveled in percent.");
def->sidetext = L("°");
def->min = 0;
def->max_literal = 90;
def->max = 90;
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionFloats{0.0});