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.
This commit is contained in:
Maze 2022-01-16 16:48:55 +01:00
parent 6898df7344
commit 8d69649814

View File

@ -129,7 +129,7 @@ HListView {
Timer {
id: autoSaveTimer
interval: 30000
interval: 3000
onTriggered: root.save()
}