MMU: revert WaitForHotendTargetTempBeep(); position in code

The 8-bit FW uses a different Fullscreen UI which doesn't show the current temperature. So, for now, keep calling WaitForHotendTargetTempBeep  before showing the full-screen message.
This commit is contained in:
gudnimg 2024-03-29 18:01:30 +00:00
parent 09f1d85e9c
commit d548bb68fd
1 changed files with 4 additions and 3 deletions

View File

@ -493,9 +493,10 @@ bool MMU2::unload() {
return false;
}
WaitForHotendTargetTempBeep();
{
ReportingRAII rep(CommandInProgress::UnloadFilament);
WaitForHotendTargetTempBeep();
UnloadInner();
}
@ -573,14 +574,14 @@ bool MMU2::load_filament_to_nozzle(uint8_t slot) {
return false;
}
WaitForHotendTargetTempBeep();
FullScreenMsgLoad(slot);
{
// used for MMU-menu operation "Load to Nozzle"
ReportingRAII rep(CommandInProgress::ToolChange);
FSensorBlockRunout blockRunout;
WaitForHotendTargetTempBeep();
if (extruder != MMU2_NO_TOOL) { // we already have some filament loaded - free it + shape its tip properly
filament_ramming();
}