Miscellaneous LCD code renaming, reordering (#12430)
* Move special characters to language.h * Apply some naming standards * Clean up menu item draw functions * Rename some Temperature methods * UI => ExtUI
This commit is contained in:
@@ -33,7 +33,7 @@
|
||||
void GcodeSuite::M75() {
|
||||
print_job_timer.start();
|
||||
#if ENABLED(EXTENSIBLE_UI)
|
||||
UI::onPrintTimerStarted();
|
||||
ExtUI::onPrintTimerStarted();
|
||||
#endif
|
||||
}
|
||||
|
||||
@@ -43,7 +43,7 @@ void GcodeSuite::M75() {
|
||||
void GcodeSuite::M76() {
|
||||
print_job_timer.pause();
|
||||
#if ENABLED(EXTENSIBLE_UI)
|
||||
UI::onPrintTimerPaused();
|
||||
ExtUI::onPrintTimerPaused();
|
||||
#endif
|
||||
}
|
||||
|
||||
@@ -53,7 +53,7 @@ void GcodeSuite::M76() {
|
||||
void GcodeSuite::M77() {
|
||||
print_job_timer.stop();
|
||||
#if ENABLED(EXTENSIBLE_UI)
|
||||
UI::onPrintTimerStopped();
|
||||
ExtUI::onPrintTimerStopped();
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user