Browse Source

🩹 Fix FT_MOTION_MENU lambda (#27401)

marbocub 6 months ago
parent
commit
76a7ab6893
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Marlin/src/lcd/menu/menu_motion.cpp

+ 1 - 1
Marlin/src/lcd/menu/menu_motion.cpp

@@ -434,7 +434,7 @@ void menu_move() {
 
     bool show_state = c.active;
     EDIT_ITEM(bool, MSG_FIXED_TIME_MOTION, &show_state, []{
-      c.active ^= true;
+      ftMotion.cfg.active ^= true;
       ftMotion.update_shaping_params();
     });