Skip to content

Commit 37d5923

Browse files
committed
fix(Shortcuts): Flip shortcut to navigate to next/previous service
1 parent c9f2aec commit 37d5923

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/stores/AppStore.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,13 +123,13 @@ export default class AppStore extends Store {
123123

124124
// Set active the next service
125125
key(
126-
'⌘+pagedown, ctrl+pagedown, ⌘+shift+tab, ctrl+shift+tab', () => {
126+
'⌘+pagedown, ctrl+pagedown, ⌘+tab, ctrl+tab', () => {
127127
this.actions.service.setActiveNext();
128128
});
129129

130130
// Set active the prev service
131131
key(
132-
'⌘+pageup, ctrl+pageup, ⌘+tab, ctrl+tab', () => {
132+
'⌘+pageup, ctrl+pageup, ⌘+shift+tab, ctrl+shift+tab', () => {
133133
this.actions.service.setActivePrev();
134134
});
135135

0 commit comments

Comments
 (0)