cleanup Shutting down -> Shutting Down awkwardness (#7099)

Co-authored-by: Jonathan Bennett <jbennett@incomsystems.biz>
This commit is contained in:
porkcube
2025-06-27 12:09:04 -04:00
committed by GitHub
parent 2ea70927c8
commit f6743798e2
3 changed files with 6 additions and 6 deletions

View File

@@ -107,8 +107,8 @@ int SystemCommandsModule::handleInputEvent(const InputEvent *event)
return true;
// Power control
case INPUT_BROKER_SHUTDOWN:
LOG_ERROR("Shutting down");
IF_SCREEN(screen->showOverlayBanner("Shutting down..."));
LOG_ERROR("Shutting Down");
IF_SCREEN(screen->showOverlayBanner("Shutting Down..."));
nodeDB->saveToDisk();
shutdownAtMsec = millis() + DEFAULT_SHUTDOWN_SECONDS * 1000;
// runState = CANNED_MESSAGE_RUN_STATE_INACTIVE;
@@ -119,4 +119,4 @@ int SystemCommandsModule::handleInputEvent(const InputEvent *event)
break;
}
return false;
}
}