mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-07-25 07:33:56 -06:00
🩹 Fix MKS UI E Max Feedrate items
This commit is contained in:
parent
2976bb48ed
commit
bd9d7a3c4d
1 changed files with 2 additions and 2 deletions
|
@ -243,10 +243,10 @@ static void set_value_confirm() {
|
||||||
#if HAS_Z_AXIS
|
#if HAS_Z_AXIS
|
||||||
case ZMaxFeedRate: planner.settings.max_feedrate_mm_s[Z_AXIS] = atof(key_value); break;
|
case ZMaxFeedRate: planner.settings.max_feedrate_mm_s[Z_AXIS] = atof(key_value); break;
|
||||||
#endif
|
#endif
|
||||||
#if HAS_E0_AXIS
|
#if HAS_EXTRUDERS
|
||||||
case E0MaxFeedRate: planner.settings.max_feedrate_mm_s[E_AXIS] = atof(key_value); break;
|
case E0MaxFeedRate: planner.settings.max_feedrate_mm_s[E_AXIS] = atof(key_value); break;
|
||||||
#endif
|
#endif
|
||||||
#if HAS_E1_AXIS
|
#if HAS_MULTI_EXTRUDER
|
||||||
case E1MaxFeedRate: planner.settings.max_feedrate_mm_s[E_AXIS_N(1)] = atof(key_value); break;
|
case E1MaxFeedRate: planner.settings.max_feedrate_mm_s[E_AXIS_N(1)] = atof(key_value); break;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue