Added missing sort field to radar

This commit is contained in:
Anuken
2020-08-18 00:52:29 -04:00
parent 0b407c7c1f
commit 0638b1f951
2 changed files with 12 additions and 1 deletions

View File

@ -406,7 +406,16 @@ public class LStatements{
fields(table, sortOrder, v -> sortOrder = v);
row(table);
table.row();
table.add(" sort ");
table.button(b -> {
b.label(() -> sort.name());
b.clicked(() -> showSelect(b, RadarSort.all, sort, t -> {
sort = t;
}, 2, cell -> cell.size(100, 50)));
}, Styles.logict, () -> {}).size(90, 40).color(table.color).left().padLeft(2);
table.add(" output ");