Fix box refresh on scene change [release]

This commit is contained in:
crschnick 2025-03-18 10:39:27 +00:00
parent 7b9afaef08
commit 39e6e66b16

View file

@ -67,6 +67,7 @@ public class ListBoxViewComp<T> extends Comp<CompStructure<ScrollPane>> {
scroll.sceneProperty().subscribe(scene -> {
if (scene != null) {
hadScene.set(true);
refresh(scroll, vbox, shown, all, cache, true);
}
});