Merge pull request #290 from Zahnstocher/master

add/remove spaces
This commit is contained in:
Pavol Zibrita 2012-08-14 08:27:50 -07:00
commit 8d41f857e4
3 changed files with 4 additions and 4 deletions

View file

@ -173,10 +173,10 @@ public class LockInfoControl {
v.value = 0;
} else {
if(progress < secondsLength) {
s = seconds[progress] + ctx.getString(R.string.int_seconds);
s = seconds[progress] + " " + ctx.getString(R.string.int_seconds);
v.value = seconds[progress] * 1000;
} else {
s = minutes[progress - secondsLength] + ctx.getString(R.string.int_min);
s = minutes[progress - secondsLength] + " " + ctx.getString(R.string.int_min);
v.value = minutes[progress - secondsLength] * 60 * 1000;
}
}