mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-26 15:06:08 +03:00
Made the estimated time only appear in the systray when the sync has actual size.
This commit is contained in:
parent
a892b79dba
commit
35b3ddd61f
1 changed files with 4 additions and 3 deletions
|
@ -414,10 +414,11 @@ void ownCloudGui::slotUpdateProgress(const QString &folder, const Progress::Info
|
||||||
_actionStatus->setText( tr("Syncing %1 of %2 (%3 of %4)")
|
_actionStatus->setText( tr("Syncing %1 of %2 (%3 of %4)")
|
||||||
.arg(currentFile).arg(progress._totalFileCount).arg(s1, s2));
|
.arg(currentFile).arg(progress._totalFileCount).arg(s1, s2));
|
||||||
|
|
||||||
_actionEstimate->setVisible(true);
|
_actionEstimate->setVisible(progress.completedSize() > 0);
|
||||||
_actionEstimate->setText( tr("ETA : %5 , %6/s").arg( Utility::timeConversion(progress.totalEstimate().getEtaEstimate()),
|
_actionEstimate->setText( tr("ETA : %5 , %6/s").arg( Utility::timeConversion(progress.totalEstimate().getEtaEstimate()),
|
||||||
Utility::octetsToString(progress.totalEstimate().getEstimatedBandwidth())) );
|
Utility::octetsToString(progress.totalEstimate().getEstimatedBandwidth())) );
|
||||||
|
|
||||||
|
|
||||||
_actionRecent->setIcon( QIcon() ); // Fixme: Set a "in-progress"-item eventually.
|
_actionRecent->setIcon( QIcon() ); // Fixme: Set a "in-progress"-item eventually.
|
||||||
|
|
||||||
if (!progress._lastCompletedItem.isEmpty()) {
|
if (!progress._lastCompletedItem.isEmpty()) {
|
||||||
|
|
Loading…
Reference in a new issue