Skip to content
This repository has been archived by the owner on Apr 5, 2019. It is now read-only.

Commit

Permalink
Merge pull request #38 from ontherunvaro/patch-shoozed
Browse files Browse the repository at this point in the history
Fix typo: 'Shoozed' -> 'Snoozed'
  • Loading branch information
denysdovhan authored Mar 12, 2018
2 parents a8abae3 + d92fa87 commit 6c775d9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Inboxer supports all Inbox by Gmail keyboard shortcuts, system-specific keybindi
| Compose Message | <kbd>Cmd/Ctrl</kbd> <kbd>N</kbd>
| Create Reminder | <kbd>Cmd/Ctrl</kbd> <kbd>Shift</kbd> <kbd>N</kbd>
| Go to Inbox | <kbd>Cmd/Ctrl</kbd> <kbd>I</kbd>
| Go to Shoozed | <kbd>Cmd/Ctrl</kbd> <kbd>S</kbd>
| Go to Snoozed | <kbd>Cmd/Ctrl</kbd> <kbd>S</kbd>
| Go to Done | <kbd>Cmd/Ctrl</kbd> <kbd>D</kbd>
| Drafts | <kbd>Cmd/Ctrl</kbd> <kbd>Shift</kbd> <kbd>D</kbd>
| Sent | <kbd>Cmd/Ctrl</kbd> <kbd>Shift</kbd> <kbd>S</kbd>
Expand Down
2 changes: 1 addition & 1 deletion app/main/menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ const viewItems = [
label: 'Go to Snoozed',
accelerator: 'CmdOrCtrl+S',
click(menuItem, focusedWindow) {
sendAction(focusedWindow, 'go-to-shoozed');
sendAction(focusedWindow, 'go-to-snoozed');
},
},
{
Expand Down
4 changes: 2 additions & 2 deletions app/main/tray.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ const contextMenu = focusedWindow => [
},
},
{
label: 'Go to Shoozed',
label: 'Go to Snoozed',
click() {
sendAction(focusedWindow, 'go-to-shoozed');
sendAction(focusedWindow, 'go-to-snoozed');
},
},
{
Expand Down
2 changes: 1 addition & 1 deletion app/renderer/browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ipc.on('show-preferences', () => $('.oin9Fc.cQ.lN').click());
// primary folder shortcuts

ipc.on('go-to-inbox', () => $$('.pa .oin9Fc.cN')[0].click());
ipc.on('go-to-shoozed', () => $$('.pa .oin9Fc.cN')[1].click());
ipc.on('go-to-snoozed', () => $$('.pa .oin9Fc.cN')[1].click());
ipc.on('go-to-done', () => $$('.pa .oin9Fc.cN')[2].click());

// secondary folder shortcuts
Expand Down

0 comments on commit 6c775d9

Please sign in to comment.