Adjust axis homed / trusted methods (#20323)

This commit is contained in:
Scott Lahteine 2020-11-29 19:06:40 -06:00 committed by GitHub
parent 0f9ac3026d
commit 8fd8772a6f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 118 additions and 149 deletions

View file

@ -164,7 +164,7 @@ void menu_advanced_settings();
void menu_tool_offsets() {
auto _recalc_offsets = []{
if (active_extruder && all_axes_known()) { // For the 2nd extruder re-home so the next tool-change gets the new offsets.
if (active_extruder && all_axes_trusted()) { // For the 2nd extruder re-home so the next tool-change gets the new offsets.
queue.inject_P(G28_STR); // In future, we can babystep the 2nd extruder (if active), making homing unnecessary.
active_extruder = 0;
}