From c1765edc96e6b26b9d199d22fe541e5cfc0cd2f6 Mon Sep 17 00:00:00 2001 From: Peter Repukat Date: Mon, 14 Mar 2022 20:12:55 +0100 Subject: [PATCH] GlosSIConfig: Default waitForChildProcs -> true --- GlosSIConfig/qml/ShortcutProps.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/GlosSIConfig/qml/ShortcutProps.qml b/GlosSIConfig/qml/ShortcutProps.qml index feaaa12..4a3dbb5 100644 --- a/GlosSIConfig/qml/ShortcutProps.qml +++ b/GlosSIConfig/qml/ShortcutProps.qml @@ -36,7 +36,7 @@ Item { launchPath: null, launchAppArgs: null, closeOnExit: true, - waitForChildProcs: false, + waitForChildProcs: true, hideDevices: true, windowMode: false, maxFps: null, @@ -55,7 +55,7 @@ Item { launchPath: null, launchAppArgs: null, closeOnExit: true, - waitForChildProcs: false, + waitForChildProcs: true, hideDevices: true, windowMode: false, maxFps: null, @@ -73,7 +73,7 @@ Item { pathInput.text = shortcutInfo.launchPath || "" argsInput.text = shortcutInfo.launchAppArgs || "" closeOnExit.checked = shortcutInfo.closeOnExit || false - waitForChildren.checked = shortcutInfo.waitForChildProcs || false + waitForChildren.checked = shortcutInfo.waitForChildProcs || true hideDevices.checked = shortcutInfo.hideDevices || false windowMode.checked = shortcutInfo.windowMode || false maxControllersSpinBox.value = shortcutInfo.maxControllers