fix: Added keyboard focus shortcut

This commit is contained in:
Simeon Radivoev 2026-03-30 20:51:48 +03:00
parent ccc5a05ed7
commit b4e9112989
Signed by: simeonradivoev
GPG key ID: 7611A451D2A5D37A
7 changed files with 141 additions and 15 deletions

View file

@ -70,7 +70,6 @@ export class LaunchGameJob implements IJob<z.infer<typeof LaunchGameJob.dataSche
// We have full control over launching integrated emulators better to use bun spawn
const bunGame = Bun.spawn([this.validCommand.metadata.emulatorBin, ...commandArgs], {
cwd: this.validCommand.startDir,
windowsVerbatimArguments: true,
signal: context.abortSignal
});