mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-15 18:28:00 +00:00
Ward only works on Permanents
This commit is contained in:
@@ -132,9 +132,9 @@ public class FCheckBoxTree extends JTree {
|
||||
this.selectedChildrenCount = selectedChildrenCount;
|
||||
this.enabledChildrenCount = enabledChildrenCount;
|
||||
}
|
||||
public boolean hasChildren() { return this.numberOfChildren > 0;}
|
||||
public boolean allChildrenSelected(){ return this.numberOfChildren == this.selectedChildrenCount; };
|
||||
public boolean allChildrenEnabled(){ return this.enabledChildrenCount == this.numberOfChildren; };
|
||||
public boolean hasChildren() { return this.numberOfChildren > 0; }
|
||||
public boolean allChildrenSelected() { return this.numberOfChildren == this.selectedChildrenCount; }
|
||||
public boolean allChildrenEnabled() { return this.enabledChildrenCount == this.numberOfChildren; }
|
||||
}
|
||||
|
||||
// == Fields of the FCheckboxTree class ==
|
||||
|
||||
Reference in New Issue
Block a user