statusicon: Add back ... to status labels

This commit is contained in:
Hylke Bons 2012-09-16 21:49:55 +01:00
parent 60688b60a7
commit c1f38a314c

View file

@ -169,15 +169,15 @@ namespace SparkleShare {
repos_syncing_down > 0) { repos_syncing_down > 0) {
CurrentState = IconState.Syncing; CurrentState = IconState.Syncing;
StateText = "Syncing changes"; StateText = "Syncing changes";
} else if (repos_syncing_down == 0) { } else if (repos_syncing_down == 0) {
CurrentState = IconState.SyncingUp; CurrentState = IconState.SyncingUp;
StateText = "Sending changes"; StateText = "Sending changes";
} else { } else {
CurrentState = IconState.SyncingDown; CurrentState = IconState.SyncingDown;
StateText = "Receiving changes"; StateText = "Receiving changes";
} }
StateText += " " + ProgressPercentage + "% " + ProgressSpeed; StateText += " " + ProgressPercentage + "% " + ProgressSpeed;