GlosSIConfig: Default waitForChildProcs -> true

pull/169/head
Peter Repukat 2 years ago
parent ba5eb3a234
commit c1765edc96

@ -36,7 +36,7 @@ Item {
launchPath: null, launchPath: null,
launchAppArgs: null, launchAppArgs: null,
closeOnExit: true, closeOnExit: true,
waitForChildProcs: false, waitForChildProcs: true,
hideDevices: true, hideDevices: true,
windowMode: false, windowMode: false,
maxFps: null, maxFps: null,
@ -55,7 +55,7 @@ Item {
launchPath: null, launchPath: null,
launchAppArgs: null, launchAppArgs: null,
closeOnExit: true, closeOnExit: true,
waitForChildProcs: false, waitForChildProcs: true,
hideDevices: true, hideDevices: true,
windowMode: false, windowMode: false,
maxFps: null, maxFps: null,
@ -73,7 +73,7 @@ Item {
pathInput.text = shortcutInfo.launchPath || "" pathInput.text = shortcutInfo.launchPath || ""
argsInput.text = shortcutInfo.launchAppArgs || "" argsInput.text = shortcutInfo.launchAppArgs || ""
closeOnExit.checked = shortcutInfo.closeOnExit || false closeOnExit.checked = shortcutInfo.closeOnExit || false
waitForChildren.checked = shortcutInfo.waitForChildProcs || false waitForChildren.checked = shortcutInfo.waitForChildProcs || true
hideDevices.checked = shortcutInfo.hideDevices || false hideDevices.checked = shortcutInfo.hideDevices || false
windowMode.checked = shortcutInfo.windowMode || false windowMode.checked = shortcutInfo.windowMode || false
maxControllersSpinBox.value = shortcutInfo.maxControllers maxControllersSpinBox.value = shortcutInfo.maxControllers

Loading…
Cancel
Save