Browse Source

Refresh screen on M22 (detach) (#20958)

vanilla_fb_2.0.x
Tanguy Pruvot 3 years ago
committed by GitHub
parent
commit
7626ef57b9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      Marlin/src/gcode/sd/M21_M22.cpp

4
Marlin/src/gcode/sd/M21_M22.cpp

@ -26,6 +26,7 @@
#include "../gcode.h"
#include "../../sd/cardreader.h"
#include "../../lcd/marlinui.h"
/**
* M21: Init SD Card
@ -36,9 +37,8 @@ void GcodeSuite::M21() { card.mount(); }
* M22: Release SD Card
*/
void GcodeSuite::M22() {
if (!IS_SD_PRINTING()) card.release();
IF_ENABLED(TFT_COLOR_UI, ui.refresh(LCDVIEW_CALL_REDRAW_NEXT));
}
#endif // SDSUPPORT

Loading…
Cancel
Save