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