mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-17 13:53:52 +02:00
Fix instance info disabled content settings & VR overlay warning
This commit is contained in:
11
src/app.js
11
src/app.js
@@ -1195,13 +1195,14 @@ console.log(`isLinux: ${LINUX}`);
|
||||
}
|
||||
ref.$disabledContentSettings = [];
|
||||
if (json.contentSettings && Object.keys(json.contentSettings).length) {
|
||||
for (var setting in $app.instanceContentSettings) {
|
||||
if (json.contentSettings[setting]) {
|
||||
for (var setting of $app.instanceContentSettings) {
|
||||
if (
|
||||
typeof json.contentSettings[setting] === 'undefined' ||
|
||||
json.contentSettings[setting] === true
|
||||
) {
|
||||
continue;
|
||||
}
|
||||
ref.$disabledContentSettings.push(
|
||||
$app.instanceContentSettings[setting]
|
||||
);
|
||||
ref.$disabledContentSettings.push(setting);
|
||||
}
|
||||
}
|
||||
return ref;
|
||||
|
||||
@@ -324,7 +324,7 @@
|
||||
"minimized": "Start minimized",
|
||||
"tray": "Minimize to tray when closing",
|
||||
"disable_gpu_acceleration": "Disable GPU Acceleration",
|
||||
"disable_gpu_acceleration_tooltip": "Only change this option if you know what you're doing, breaks SteamVR overlay, may fix issues with UI, requires restarting VRCX",
|
||||
"disable_gpu_acceleration_tooltip": "Only change this option if you know what you're doing, may fix issues with UI, requires restarting VRCX",
|
||||
"disable_vr_overlay_gpu_acceleration": "Disable VR Overlay GPU Acceleration",
|
||||
"disable_vr_overlay_gpu_acceleration_tooltip": "VR Overlay GPU acceleration can cause VRCX to crash or cause VRAM memory leaks, requires restarting VRCX",
|
||||
"proxy": "Proxy settings"
|
||||
|
||||
Reference in New Issue
Block a user