Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: MarlinFirmware/Marlin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1eaff6a649b139f2f98a789837b8fc73ff1eaef2
Choose a base ref
..
head repository: MarlinFirmware/Marlin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: aee971bcaf2d8b7157985f36f6705015ef334238
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 Marlin/src/gcode/temp/M140_M190.cpp
2 changes: 1 addition & 1 deletion Marlin/src/gcode/temp/M140_M190.cpp
Original file line number Diff line number Diff line change
@@ -87,7 +87,7 @@ void GcodeSuite::M140_M190(const bool isM190) {

ui.set_status_P(thermalManager.isHeatingBed() ? GET_TEXT(MSG_BED_HEATING) : GET_TEXT(MSG_BED_COOLING));

if (is_M190)
if (isM190)
thermalManager.wait_for_bed(no_wait_for_cooling);
}