Revert inverted "Running wizard ..." message
Update build number +1 for PR + one for merge
This commit is contained in:
parent
f7167595c3
commit
d8ae7cbe11
|
|
@ -27,7 +27,7 @@ extern PGM_P sPrinterName;
|
||||||
#define FW_VERSION STR(FW_MAJOR) "." STR(FW_MINOR) "." STR(FW_REVISION) "-" STR(FW_FLAVOR) "" STR(FW_FLAVERSION)
|
#define FW_VERSION STR(FW_MAJOR) "." STR(FW_MINOR) "." STR(FW_REVISION) "-" STR(FW_FLAVOR) "" STR(FW_FLAVERSION)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define FW_COMMIT_NR 5684
|
#define FW_COMMIT_NR 5686
|
||||||
|
|
||||||
// FW_VERSION_UNKNOWN means this is an unofficial build.
|
// FW_VERSION_UNKNOWN means this is an unofficial build.
|
||||||
// The firmware should only be checked into github with this symbol.
|
// The firmware should only be checked into github with this symbol.
|
||||||
|
|
|
||||||
|
|
@ -3971,7 +3971,7 @@ void lcd_wizard() {
|
||||||
bool result = true;
|
bool result = true;
|
||||||
if (calibration_status_get(CALIBRATION_WIZARD_STEPS)) {
|
if (calibration_status_get(CALIBRATION_WIZARD_STEPS)) {
|
||||||
// calibration already performed: ask before clearing the previous status
|
// calibration already performed: ask before clearing the previous status
|
||||||
result = !lcd_show_multiscreen_message_yes_no_and_wait_P(_i("Running Wizard will delete current calibration results and start from the beginning. Continue?"), false);////MSG_WIZARD_RERUN c=20 r=7
|
result = lcd_show_multiscreen_message_yes_no_and_wait_P(_i("Running Wizard will delete current calibration results and start from the beginning. Continue?"), false);////MSG_WIZARD_RERUN c=20 r=7
|
||||||
}
|
}
|
||||||
if (result) {
|
if (result) {
|
||||||
calibration_status_clear(CALIBRATION_WIZARD_STEPS);
|
calibration_status_clear(CALIBRATION_WIZARD_STEPS);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue