DroidFish: Remove spaces in time control string, to save space on the title bar.

This commit is contained in:
Peter Osterlund
2012-09-21 19:47:27 +00:00
parent 75fd15d3bf
commit 04f7d88368

View File

@@ -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());