increase timeout time for screensaver

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2025-06-25 07:19:23 +02:00
parent 6260c7e62c
commit 00cfecf13a
2 changed files with 5 additions and 5 deletions

View File

@@ -88,7 +88,7 @@ Device::Device(void *appstate) : UIWidget(appstate)
options.persistenceManager->Load();
m_widget = std::make_shared<SplashScreen>(&options);
m_inactivityTracker = std::make_unique<InactivityTracker>(6000, []() {
m_inactivityTracker = std::make_unique<InactivityTracker>(60000, []() {
const auto screensaver = std::make_shared<ScreenSaver>(&options);
options.pushScreen(screensaver);
});