Skip to content

Commit

Permalink
Fix stash search shortcuts for Mac
Browse files Browse the repository at this point in the history
  • Loading branch information
hsource committed Dec 7, 2023
1 parent c7f4ced commit 285a628
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/src/shortcuts/text-box.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export function stashSearch (
overlay.assertGameActive()
clipboard.writeText(text)
uIOhook.keyTap(Key.F, [Key.Ctrl])
uIOhook.keyTap(Key.V, [Key.Ctrl])
uIOhook.keyTap(Key.V, [process.platform === 'darwin' ? Key.Meta : Key.Ctrl])
uIOhook.keyTap(Key.Enter)
})
}

0 comments on commit 285a628

Please sign in to comment.