We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f08d2b7 commit fc2f2c7Copy full SHA for fc2f2c7
src/backend/launcher.ts
@@ -212,7 +212,7 @@ async function prepareLaunch(
212
}
213
214
gameScopeCommand.push(
215
- ...shlex.split(gameSettings.gamescope.additionalOptions)
+ ...shlex.split(gameSettings.gamescope.additionalOptions ?? '')
216
)
217
218
// Note: needs to be the last option
src/frontend/screens/Settings/components/Gamescope.tsx
@@ -369,7 +369,7 @@ const Gamescope = () => {
369
)}
370
/>
371
372
- onChange={(event: ChangeEvent<HTMLInputElement>) =>
+ onBlur={(event: ChangeEvent<HTMLInputElement>) =>
373
setGamescope({
374
...gamescope,
375
additionalOptions: event.currentTarget.value
0 commit comments