multiscreen yes/no message updated: custom characters

This commit is contained in:
PavelSindler 2017-10-20 16:57:16 +02:00
parent 68f9dabdf2
commit 2c63ed5d43
1 changed files with 6 additions and 2 deletions

View File

@ -2504,8 +2504,11 @@ int8_t lcd_show_multiscreen_message_yes_no_and_wait_P(const char *msg, bool allo
while (lcd_clicked()); while (lcd_clicked());
delay(10); delay(10);
while (lcd_clicked()); while (lcd_clicked());
KEEPALIVE_STATE(IN_HANDLER); if (msg_next == NULL) {
if(msg_next == NULL) return yes; KEEPALIVE_STATE(IN_HANDLER);
lcd_set_custom_characters();
return yes;
}
else break; else break;
} }
} }
@ -3271,6 +3274,7 @@ void lcd_wizard() {
lcd_wizard(0); lcd_wizard(0);
} }
else { else {
lcd_return_to_status();
lcd_update_enable(true); lcd_update_enable(true);
lcd_update(2); lcd_update(2);
} }