Mobile text input fixes

This commit is contained in:
Anuken
2021-08-13 19:07:14 -04:00
parent 031b1abe0a
commit 94b12704dc
9 changed files with 16 additions and 15 deletions
+1 -1
View File
@@ -86,7 +86,7 @@ public abstract class LStatement{
protected Cell<TextField> field(Table table, String value, Cons<String> setter){
return table.field(value, Styles.nodeField, s -> setter.get(sanitize(s)))
.size(144f, 40f).pad(2f).color(table.color).maxTextLength(LAssembler.maxTokenLength).addInputDialog();
.size(144f, 40f).pad(2f).color(table.color).maxTextLength(LAssembler.maxTokenLength);
}
protected Cell<TextField> fields(Table table, String desc, String value, Cons<String> setter){