Lemur resize border

I would like to add that this was not enough:

try{pnl.getControl(GuiControl.class).update(1f/30f); ...

I think it is because of some delayed visual effects I am using…

but this made things get stable (not crash), despite the dialog looks bad and incomplete whenever an impossible layout happens (like 1x1 lol) it is not really a problem now:

@Override
public void updateLogicalState(float tpf) {
	try{
		super.updateLogicalState(tpf);
	}catch(Exception e){
		// log exception...
	}
}

I think I will even override all dialog contents with a simple label “impossible layout”, will make things clear to users so they can grow it back (happened only when shrinking) :slight_smile:

from this tip:

thx!