Skip to content

Commit

Permalink
fix(Shortcuts): Flip shortcut to navigate to next/previous service
Browse files Browse the repository at this point in the history
  • Loading branch information
adlk committed Oct 27, 2017
1 parent c9f2aec commit 37d5923
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stores/AppStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,13 +123,13 @@ export default class AppStore extends Store {

// Set active the next service
key(
'⌘+pagedown, ctrl+pagedown, ⌘+shift+tab, ctrl+shift+tab', () => {
'⌘+pagedown, ctrl+pagedown, ⌘+tab, ctrl+tab', () => {
this.actions.service.setActiveNext();
});

// Set active the prev service
key(
'⌘+pageup, ctrl+pageup, ⌘+tab, ctrl+tab', () => {
'⌘+pageup, ctrl+pageup, ⌘+shift+tab, ctrl+shift+tab', () => {
this.actions.service.setActivePrev();
});

Expand Down

0 comments on commit 37d5923

Please sign in to comment.