commit
8d41f857e4
3 changed files with 4 additions and 4 deletions
|
@ -173,10 +173,10 @@ public class LockInfoControl {
|
||||||
v.value = 0;
|
v.value = 0;
|
||||||
} else {
|
} else {
|
||||||
if(progress < secondsLength) {
|
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;
|
v.value = seconds[progress] * 1000;
|
||||||
} else {
|
} 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;
|
v.value = minutes[progress - secondsLength] * 60 * 1000;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue