Skip to content

Commit

Permalink
Increase filament runout distance edit limit (MarlinFirmware#20828)
Browse files Browse the repository at this point in the history
  • Loading branch information
slowbro authored and thinkyhead committed Apr 29, 2021
1 parent d61b15e commit 6d3c7b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/lcd/menu/menu_advanced.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ void menu_backlash();

#if HAS_FILAMENT_RUNOUT_DISTANCE
editable.decimal = runout.runout_distance();
EDIT_ITEM(float3, MSG_RUNOUT_DISTANCE_MM, &editable.decimal, 1, float(FILAMENT_RUNOUT_DISTANCE_MM) * 1.5f,
EDIT_ITEM_FAST(float3, MSG_RUNOUT_DISTANCE_MM, &editable.decimal, 1, 999,
[]{ runout.set_runout_distance(editable.decimal); }, true
);
#endif
Expand Down

0 comments on commit 6d3c7b7

Please sign in to comment.