Skip to content

Commit 8b50eb5

Browse files
committed
Fix Manage tab filling checkboxes before Flashpoint path is set
1 parent d38ba31 commit 8b50eb5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Common.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ public static TreeNode AddNodeToList(XmlNode child, TreeNodeCollection parent, b
258258

259259
// Initialize checkbox
260260
// (the Checked attribute needs to be explicitly set or else the checkbox won't appear)
261-
listNode.Checked = (child.Name == "component") && !(listNode.Tag as Component).Extra;
261+
listNode.Checked = setCheckState && (child.Name == "component") && !(listNode.Tag as Component).Extra;
262262

263263
return listNode;
264264
}

0 commit comments

Comments
 (0)