Fix merge conflict.

This commit is contained in:
Jean-François Milants 2021-02-14 14:19:30 +01:00
commit 5fdfb2112e
10 changed files with 80 additions and 7 deletions

View file

@ -71,6 +71,14 @@ bool NotificationManager::AreNewNotificationsAvailable() {
return newNotification;
}
bool NotificationManager::IsVibrationEnabled() {
return vibrationEnabled;
}
void NotificationManager::ToggleVibrations() {
vibrationEnabled = !vibrationEnabled;
}
bool NotificationManager::ClearNewNotificationFlag() {
return newNotification.exchange(false);
}