only activate the timeout on call notification previews after they have been interacted with

This commit is contained in:
Florian Kraupa
2021-05-13 00:08:40 +02:00
parent d13dd6dee3
commit 5da65494b3
3 changed files with 31 additions and 14 deletions

View File

@@ -226,7 +226,7 @@ void SystemTask::Work() {
if (isSleeping && !isWakingUp)
GoToRunning();
if (notificationManager.GetLastNotification().category == Controllers::NotificationManager::Categories::IncomingCall) {
motorController.startRunning(50);
motorController.startRunning(500);
} else {
motorController.RunForDuration(35);
}