This commit is contained in:
Anuken
2020-12-05 10:58:30 -05:00
parent 8c0477f6bd
commit edbced6642
2 changed files with 4 additions and 1 deletions

View File

@ -114,6 +114,7 @@ public abstract class LStatement{
t.actions(Actions.alpha(0), Actions.fadeIn(0.3f, Interp.fade));
t.top().pane(inner -> {
inner.marginRight(24f);
inner.top();
hideCons.get(inner, hide);
}).top();

View File

@ -528,7 +528,9 @@ public class LStatements{
stack.clearChildren();
stack.addChild(tables[selected]);
t.pack();
t.parent.parent.pack();
t.parent.parent.invalidateHierarchy();
}).size(80f, 50f).growX().checked(selected == fi).group(group);
}
t.row();