File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -1114,9 +1114,11 @@ bool GCodes::IsReallyPrintingOrResuming() const noexcept
1114
1114
bool GCodes::IsHeatingUp () const noexcept
1115
1115
{
1116
1116
int num;
1117
- return FileGCode ()->GetState () == GCodeState::m109WaitForTemperature || (FileGCode ()->IsExecuting ()
1118
- && FileGCode ()->GetCommandLetter () == ' M'
1119
- && ((num = FileGCode ()->GetCommandNumber ()) == 109 || num == 116 || num == 190 || num == 191 ));
1117
+ return FileGCode ()->GetState () == GCodeState::m109WaitForTemperature
1118
+ || ( FileGCode ()->IsExecuting ()
1119
+ && FileGCode ()->GetCommandLetter () == ' M'
1120
+ && ((num = FileGCode ()->GetCommandNumber ()) == 109 || num == 116 || num == 190 || num == 191 )
1121
+ );
1120
1122
}
1121
1123
1122
1124
#if HAS_VOLTAGE_MONITOR || HAS_STALL_DETECT
You can’t perform that action at this time.
0 commit comments