Skip to content

Commit

Permalink
🎨 Tweak M73 condition
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Aug 19, 2021
1 parent be55401 commit 9c19d47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/gcode/lcd/M73.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ void GcodeSuite::M73() {
? parser.value_float() * (PROGRESS_SCALE)
: parser.value_byte()
);
#if BOTH(LCD_SET_PROGRESS_MANUALLY, USE_M73_REMAINING_TIME)
#if ENABLED(USE_M73_REMAINING_TIME)
if (parser.seenval('R')) ui.set_remaining_time(60 * parser.value_ulong());
#endif
}
Expand Down

0 comments on commit 9c19d47

Please sign in to comment.