From db24ebc082529a82ea511011d0b17deb819526cf Mon Sep 17 00:00:00 2001 From: miruka Date: Sun, 28 Feb 2021 14:31:14 -0400 Subject: [PATCH] =?UTF-8?q?Increase=20pushrules=20auto-save=20timer:=2010?= =?UTF-8?q?=20=E2=86=92=2030s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 10s is too short and can bother user setting their rules with the save's visible effects --- 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 0becac8c..e2d4e3aa 100644 --- a/src/gui/Pages/AccountSettings/Notifications.qml +++ b/src/gui/Pages/AccountSettings/Notifications.qml @@ -128,7 +128,7 @@ HListView { Timer { id: autoSaveTimer - interval: 10000 + interval: 30000 onTriggered: root.save() }