mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
Fix Quicken + Suspend
This commit is contained in:
@@ -499,7 +499,7 @@ public class FCheckBoxTree extends JTree {
|
||||
int disabledNodes = cn.numberOfChildren - cn.enabledChildrenCount;
|
||||
int totalActiveNodes = cn.numberOfChildren - disabledNodes;
|
||||
if (this.displayNodesCount && !node.isLeaf() && cn.numberOfChildren > 0 && totalActiveNodes > 0) {
|
||||
chkBoxTxt += String.format(" (%d/%d)", cn.selectedChildrenCount, totalActiveNodes);;
|
||||
chkBoxTxt += String.format(" (%d/%d)", cn.selectedChildrenCount, totalActiveNodes);
|
||||
}
|
||||
this.checkBox.setText(chkBoxTxt);
|
||||
this.checkBox.setName(nodeInfo.item.toString());
|
||||
|
||||
Reference in New Issue
Block a user