|
@@ -75,9 +75,9 @@ void set_bed_leveling_enabled(const bool enable/*=true*/) {
|
75
|
75
|
planner.synchronize();
|
76
|
76
|
|
77
|
77
|
// Get the corrected leveled / unleveled position
|
78
|
|
- planner.apply_modifiers(current_position); // Physical position with all modifiers
|
79
|
|
- planner.leveling_active ^= true; // Toggle leveling between apply and unapply
|
80
|
|
- planner.unapply_modifiers(current_position); // Logical position with modifiers removed
|
|
78
|
+ planner.apply_modifiers(current_position, true); // Physical position with all modifiers
|
|
79
|
+ planner.leveling_active ^= true; // Toggle leveling between apply and unapply
|
|
80
|
+ planner.unapply_modifiers(current_position, true); // Logical position with modifiers removed
|
81
|
81
|
|
82
|
82
|
sync_plan_position();
|
83
|
83
|
_report_leveling();
|