mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-25 22:46:04 +03:00
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:
parent
fc31ac4a1f
commit
9fac497e6e
2 changed files with 2 additions and 2 deletions
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue