mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-22 07:30:24 +00:00
Fix expand button being enabled with no children shown
This commit is contained in:
parent
d62047d56b
commit
9c565de56b
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ public class StoreSectionMiniComp extends Comp<CompStructure<VBox>> {
|
|||
+ section.getWrapper().getName().getValue();
|
||||
},
|
||||
section.getWrapper().getName()))
|
||||
.disable(Bindings.size(section.getAllChildren()).isEqualTo(0))
|
||||
.disable(Bindings.size(section.getShownChildren()).isEqualTo(0))
|
||||
.grow(false, true)
|
||||
.styleClass("expand-button");
|
||||
|
||||
|
|
Loading…
Reference in a new issue