Fix visible msvc

This commit is contained in:
j-selby 2017-10-19 15:13:22 +11:00
parent 54ce13b672
commit 22ce8310dd
2 changed files with 3 additions and 1 deletions

View file

@ -2,6 +2,7 @@ function Component() {
if (systemInfo.kernelType === "winnt") { if (systemInfo.kernelType === "winnt") {
component.setValue("Virtual", "true"); // Hidden by default component.setValue("Virtual", "true"); // Hidden by default
component.setValue("Default", "false"); // bleeding component.setValue("Default", "false"); // bleeding
component.setValue("Enabled", "false");
} else { } else {
component.setValue("Virtual", "true"); component.setValue("Virtual", "true");
component.setValue("Enabled", "false"); component.setValue("Enabled", "false");

View file

@ -1,7 +1,8 @@
function Component() { function Component() {
if (systemInfo.kernelType === "winnt") { if (systemInfo.kernelType === "winnt") {
component.setValue("Virtual", "true"); component.setValue("Virtual", "true"); // Hidden by default
component.setValue("Default", "false"); // msvc component.setValue("Default", "false"); // msvc
component.setValue("Enabled", "false");
} else { } else {
component.setValue("Virtual", "true"); component.setValue("Virtual", "true");
component.setValue("Enabled", "false"); component.setValue("Enabled", "false");