This commit is contained in:
Stephan Richter
2020-12-04 00:56:14 +01:00
parent a45080ca88
commit 237b4e1f8f
4 changed files with 6 additions and 4 deletions

View File

@@ -37,7 +37,7 @@ public abstract class StretchableTile extends Tile {
@Override
protected Window properties(List<Fieldset> preForm, FormInput formInputs, List<Fieldset> postForm) {
formInputs.add(stretchType(),new Input(STRETCH_LENGTH, stretch).addTo(new Tag("span")).content(NBSP+t("Tile(s)")));
formInputs.add(stretchType(),new Input(STRETCH_LENGTH, stretch).numeric().addTo(new Tag("span")).content(NBSP+t("Tile(s)")));
return super.properties(preForm, formInputs, postForm);
}