Default allowDesktopConfig to false

Users reported issues with UWP/Launcher titles not handling inputs properly
I believe that this is due to this config.

Let's just default that to false to emulate ol GloSCs behaviour
pull/165/head^2
Peter Repukat 2 years ago
parent ae45a9918b
commit c9283a61ad

@ -45,7 +45,7 @@ Item {
maxControllers: 4,
disableOverlay: false,
realDeviceIds: false,
allowDesktopConfig: true,
allowDesktopConfig: false,
emulateDS4: false,
})
@ -66,7 +66,7 @@ Item {
maxControllers: 4,
disableOverlay: false,
realDeviceIds: false,
allowDesktopConfig: true,
allowDesktopConfig: false,
emulateDS4: false,
})
}
@ -83,7 +83,7 @@ Item {
maxControllersSpinBox.value = shortcutInfo.maxControllers
disableOverlayCheckbox.checked = shortcutInfo.disableOverlay || false
realDeviceIds.checked = shortcutInfo.realDeviceIds || false
allowDesktopConfig.checked = shortcutInfo.allowDesktopConfig || true
allowDesktopConfig.checked = shortcutInfo.allowDesktopConfig || false
emulateDS4.checked = shortcutInfo.emulateDS4 || false
}

@ -46,7 +46,7 @@ inline struct Window {
inline struct Controller {
int maxControllers = 4;
bool allowDesktopConfig = Settings::launch.launch;
bool allowDesktopConfig = false;
bool emulateDS4 = false;
} controller;

Loading…
Cancel
Save