mirror of
https://github.com/yuzu-emu/citra-qt-installer.git
synced 2024-11-24 06:05:38 +01:00
Fix visible msvc
This commit is contained in:
parent
54ce13b672
commit
22ce8310dd
@ -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");
|
||||||
|
@ -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");
|
||||||
|
Loading…
Reference in New Issue
Block a user