mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2025-12-21 05:02:17 +01:00
DroidFish: Remove spaces in time control string, to save space on the title bar.
This commit is contained in:
@@ -1010,11 +1010,11 @@ public class DroidFish extends Activity implements GUIInterface {
|
|||||||
int inc = tmpInfo[2];
|
int inc = tmpInfo[2];
|
||||||
if (mps > 0) {
|
if (mps > 0) {
|
||||||
sb.append(mps);
|
sb.append(mps);
|
||||||
sb.append(" / ");
|
sb.append("/");
|
||||||
}
|
}
|
||||||
sb.append(timeToString(tc));
|
sb.append(timeToString(tc));
|
||||||
if ((inc > 0) || (mps <= 0)) {
|
if ((inc > 0) || (mps <= 0)) {
|
||||||
sb.append(" + ");
|
sb.append("+");
|
||||||
sb.append(tmpInfo[2] / 1000);
|
sb.append(tmpInfo[2] / 1000);
|
||||||
}
|
}
|
||||||
summaryTitleText.setText(sb.toString());
|
summaryTitleText.setText(sb.toString());
|
||||||
|
|||||||
Reference in New Issue
Block a user