From 22ce8310dd63df67a2084ce5939d33fdf3b38036 Mon Sep 17 00:00:00 2001 From: j-selby Date: Thu, 19 Oct 2017 15:13:22 +1100 Subject: [PATCH] Fix visible msvc --- scripts/msvc-canary.qs | 1 + scripts/msvc-nightly.qs | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/msvc-canary.qs b/scripts/msvc-canary.qs index 2437d83..7468fa4 100644 --- a/scripts/msvc-canary.qs +++ b/scripts/msvc-canary.qs @@ -2,6 +2,7 @@ function Component() { if (systemInfo.kernelType === "winnt") { component.setValue("Virtual", "true"); // Hidden by default component.setValue("Default", "false"); // bleeding + component.setValue("Enabled", "false"); } else { component.setValue("Virtual", "true"); component.setValue("Enabled", "false"); diff --git a/scripts/msvc-nightly.qs b/scripts/msvc-nightly.qs index 4d8fe39..42e8594 100644 --- a/scripts/msvc-nightly.qs +++ b/scripts/msvc-nightly.qs @@ -1,7 +1,8 @@ function Component() { if (systemInfo.kernelType === "winnt") { - component.setValue("Virtual", "true"); + component.setValue("Virtual", "true"); // Hidden by default component.setValue("Default", "false"); // msvc + component.setValue("Enabled", "false"); } else { component.setValue("Virtual", "true"); component.setValue("Enabled", "false");