Hotfix. Slow download speed while tray is open. Do not run rotation animation in syncstatus in tray.

Signed-off-by: alex-z <blackslayer4@gmail.com>
This commit is contained in:
alex-z 2024-04-18 15:42:09 +02:00
parent e41f702636
commit 5ea5a27b99
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ RowLayout {
padding: 0
imageSource: syncStatus.syncIcon
running: syncStatus.syncing
running: false // hotfix for download speed slowdown when tray is open
}
ColumnLayout {

View File

@ -154,7 +154,7 @@ void SyncStatusSummary::setSyncStateForFolder(const Folder *folder)
break;
case SyncResult::SyncRunning:
case SyncResult::NotYetStarted:
setSyncing(false);
setSyncing(true);
if (totalFiles() <= 0) {
setSyncStatusString(tr("Preparing sync"));
} else {