🚸 Fix FT Motion Linear Advance MarlinUI edit item (#27786)

This commit is contained in:
narno2202 2025-04-08 00:38:11 +02:00 committed by GitHub
parent 6984c7f308
commit ed4afab004
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -503,7 +503,7 @@ void menu_move() {
#if HAS_EXTRUDERS
EDIT_ITEM(bool, MSG_LINEAR_ADVANCE, &c.linearAdvEna);
if (c.linearAdvEna || ENABLED(FT_MOTION_NO_MENU_TOGGLE))
EDIT_ITEM(float42_52, MSG_ADVANCE_K, &c.linearAdvK, 0, 10);
EDIT_ITEM(float62, MSG_ADVANCE_K, &c.linearAdvK, 0.0f, 1000.0f);
#endif
END_MENU();