Skip to content
Snippets Groups Projects
Unverified Commit 9a0b9de3 authored by shuttercat's avatar shuttercat Committed by GitHub
Browse files

Scale runout distance setting for editable range (#18567)

parent 9ee891c4
No related branches found
No related tags found
No related merge requests found
......@@ -152,7 +152,7 @@ void menu_cancelobject();
#if HAS_FILAMENT_RUNOUT_DISTANCE
editable.decimal = runout.runout_distance();
EDIT_ITEM(float3, MSG_RUNOUT_DISTANCE_MM, &editable.decimal, 1, 30,
EDIT_ITEM(float3, MSG_RUNOUT_DISTANCE_MM, &editable.decimal, 1, float(FILAMENT_RUNOUT_DISTANCE_MM) * 1.5f,
[]{ runout.set_runout_distance(editable.decimal); }, true
);
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment