bugfixes, improved action framework, added actions

This commit is contained in:
Stephan Richter
2020-10-29 11:41:10 +01:00
parent 38bb612d97
commit daae49296f
19 changed files with 115 additions and 101 deletions

View File

@@ -101,8 +101,8 @@ public abstract class Turnout extends Tile implements Device{
}
@Override
public Tag propForm() {
Tag form = super.propForm();
public Tag propForm(String id) {
Tag form = super.propForm(id);
Fieldset fieldset = new Fieldset(t("Decoder settings"));
Label protocol = new Label(t("Protocol:"));
for (Protocol proto : Protocol.values()) {