statusicon: Add back ... to status labels

This commit is contained in:
Hylke Bons 2012-09-16 21:49:55 +01:00
parent d53ae07edc
commit b85d9185ad

View file

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