Skip to content

Commit

Permalink
Change ctrl key to shift
Browse files Browse the repository at this point in the history
  • Loading branch information
richrace committed Sep 6, 2023
1 parent 1ea9ca5 commit 28b7291
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tray.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ const createTray = (path: any) => {
mainTray.setToolTip('Arctis Headphones');
mainTray.setContextMenu(contextMenu);

mainTray.on('click', (event: { altKey: boolean; ctrlKey: boolean }) => {
mainTray.on('click', (event: { altKey: boolean; shiftKey: boolean }) => {
const debug = event.altKey;
const force = event.ctrlKey;
const force = event.shiftKey;
buildTrayMenu(force, debug);
});

Expand Down

0 comments on commit 28b7291

Please sign in to comment.