Desuuuu
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
8 additions and
1 deletions
-
Marlin/src/feature/pause.cpp
-
Marlin/src/lcd/extui/ui_api.cpp
-
Marlin/src/lcd/extui/ui_api.h
|
|
@ -536,7 +536,7 @@ void wait_for_confirmation(const bool is_reload/*=false*/, const int8_t max_beep |
|
|
|
host_prompt_do(PROMPT_INFO, GET_TEXT(MSG_REHEATING)); |
|
|
|
#endif |
|
|
|
#if ENABLED(EXTENSIBLE_UI) |
|
|
|
ExtUI::onStatusChanged(GET_TEXT(MSG_REHEATING)); |
|
|
|
ExtUI::onStatusChanged_P(GET_TEXT(MSG_REHEATING)); |
|
|
|
#endif |
|
|
|
|
|
|
|
// Re-enable the heaters if they timed out
|
|
|
|
|
|
@ -1071,6 +1071,12 @@ namespace ExtUI { |
|
|
|
onUserConfirmRequired(msg); |
|
|
|
} |
|
|
|
|
|
|
|
void onStatusChanged_P(PGM_P const pstr) { |
|
|
|
char msg[strlen_P(pstr) + 1]; |
|
|
|
strcpy_P(msg, pstr); |
|
|
|
onStatusChanged(msg); |
|
|
|
} |
|
|
|
|
|
|
|
FileList::FileList() { refresh(); } |
|
|
|
|
|
|
|
void FileList::refresh() { num_files = 0xFFFF; } |
|
|
|
|
|
@ -339,6 +339,7 @@ namespace ExtUI { |
|
|
|
void onUserConfirmRequired(const char * const msg); |
|
|
|
void onUserConfirmRequired_P(PGM_P const pstr); |
|
|
|
void onStatusChanged(const char * const msg); |
|
|
|
void onStatusChanged_P(PGM_P const pstr); |
|
|
|
void onFactoryReset(); |
|
|
|
void onStoreSettings(char *); |
|
|
|
void onLoadSettings(const char *); |
|
|
|