Import Widget::fontId

This commit is contained in:
Max Weber
2018-09-04 11:19:54 -06:00
parent 1dbb81a9e8
commit 115f570cc7
3 changed files with 19 additions and 0 deletions

View File

@@ -123,6 +123,7 @@ public class WidgetInfoTableModel extends AbstractTableModel
(w, str) -> w.setTextColor(Integer.parseInt(str, 16)),
String.class
));
out.add(new WidgetField<>("FontId", Widget::getFontId, Widget::setFontId, Integer.class));
out.add(new WidgetField<>("Name", w -> w.getName().trim(), Widget::setName, String.class));
out.add(new WidgetField<>("ItemId", Widget::getItemId, Widget::setItemId, Integer.class));
out.add(new WidgetField<>("ItemQuantity", Widget::getItemQuantity));