Skip to content

Commit 2ea0b35

Browse files
committed
[FlashpointInstaller] Make Extras category to unchecked by default
1 parent 15b65a9 commit 2ea0b35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FlashpointInstaller/src/Common.cs

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

234234
// Initialize checkbox
235235
// (the Checked attribute needs to be explicitly set or else the checkbox won't appear)
236-
listNode.Checked = child.Name == "component";
236+
listNode.Checked = child.Name == "component" && !listNode.Name.StartsWith("extra");
237237

238238
return listNode;
239239
}

0 commit comments

Comments
 (0)