Fix double struc creation

This commit is contained in:
crschnick 2025-03-18 08:39:32 +00:00
parent e0bdf3f52d
commit 72a5c67aab
2 changed files with 2 additions and 4 deletions

View file

@ -92,8 +92,7 @@ public class StoreSectionComp extends StoreSectionBaseComp {
var hbox = ((HBox) struc.get().getChildren().getFirst());
addPseudoClassListeners(struc.get(), section.getWrapper().getExpanded());
addVisibilityListeners(struc.get(), hbox);
})
.createStructure();
});
return full.createStructure();
}
}

View file

@ -85,8 +85,7 @@ public class StoreSectionMiniComp extends StoreSectionBaseComp {
var hbox = ((HBox) struc.get().getChildren().getFirst());
addVisibilityListeners(struc.get(), hbox);
}
})
.createStructure();
});
return full.createStructure();
}
}