implemented small delay between setting signal to go and start of train. various GUI improvements

This commit is contained in:
Stephan Richter
2021-01-02 13:56:17 +01:00
parent 0b3ae425c0
commit d3c3051605
16 changed files with 173 additions and 69 deletions

View File

@@ -50,7 +50,7 @@ public class BlockFree extends Condition {
@Override
public String toString() {
if (block == null) return t("[Click here to select block!]");
if (block == null) return "["+t("Click here to select block!")+"]";
return t(inverted ? "Block {} is occupied":"Block {} is free",block);
}