Browse Source
Save/Restore leveling on toolchange for singlenozzle too (#17682)
vanilla_fb_2.0.x
studiodyne
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
Marlin/src/module/tool_change.cpp
|
@ -914,7 +914,7 @@ void tool_change(const uint8_t new_tool, bool no_move/*=false*/) { |
|
|
const uint8_t old_tool = active_extruder; |
|
|
const uint8_t old_tool = active_extruder; |
|
|
const bool can_move_away = !no_move && !idex_full_control; |
|
|
const bool can_move_away = !no_move && !idex_full_control; |
|
|
|
|
|
|
|
|
#if HAS_LEVELING && DISABLED(SINGLENOZZLE) |
|
|
#if HAS_LEVELING |
|
|
// Set current position to the physical position
|
|
|
// Set current position to the physical position
|
|
|
TEMPORARY_BED_LEVELING_STATE(false); |
|
|
TEMPORARY_BED_LEVELING_STATE(false); |
|
|
#endif |
|
|
#endif |
|
|