From 8d696498140c118b966af6d382a48959127f1f69 Mon Sep 17 00:00:00 2001 From: Maze Date: Sun, 16 Jan 2022 16:48:55 +0100 Subject: [PATCH] Change autosave for push rules to 3 seconds A 30 second delay is unacceptable when there are two UIs for the same thing, because the UIs will be out of sync for up to 30 seconds. --- src/gui/Pages/AccountSettings/Notifications.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/Pages/AccountSettings/Notifications.qml b/src/gui/Pages/AccountSettings/Notifications.qml index db8fb25b..13529e35 100644 --- a/src/gui/Pages/AccountSettings/Notifications.qml +++ b/src/gui/Pages/AccountSettings/Notifications.qml @@ -129,7 +129,7 @@ HListView { Timer { id: autoSaveTimer - interval: 30000 + interval: 3000 onTriggered: root.save() }