mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-17 23:18:34 +00:00
Apply HOME_AFTER_DEACTIVATE for 'G28 O' (#20525)
This commit is contained in:
parent
71bec0824c
commit
7afd274d0c
1 changed files with 1 additions and 1 deletions
|
@ -227,7 +227,7 @@ void GcodeSuite::G28() {
|
|||
#endif
|
||||
|
||||
// Home (O)nly if position is unknown
|
||||
if (!homing_needed() && parser.boolval('O')) {
|
||||
if (!axes_should_home() && parser.boolval('O')) {
|
||||
if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("> homing not needed, skip");
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue