Add keyboard shortcut to match other MacOS Chat Apps (#4719)
MacOS Messages and WhatsApp (amongst other messaging apps) use this Cmd + Shift + [/] to switch between convos. Would be great to have that in Signal as well.
This commit is contained in:
parent
6f861e0827
commit
2501584db6
1 changed files with 2 additions and 0 deletions
|
@ -1146,6 +1146,7 @@ type WhatIsThis = import('./window.d').WhatIsThis;
|
|||
// up/previous
|
||||
if (
|
||||
(!isSearching && optionOrAlt && !shiftKey && key === 'ArrowUp') ||
|
||||
(!isSearching && commandOrCtrl && shiftKey && key === '[') ||
|
||||
(!isSearching && ctrlKey && shiftKey && key === 'Tab')
|
||||
) {
|
||||
const unreadOnly = false;
|
||||
|
@ -1165,6 +1166,7 @@ type WhatIsThis = import('./window.d').WhatIsThis;
|
|||
// down/next
|
||||
if (
|
||||
(!isSearching && optionOrAlt && !shiftKey && key === 'ArrowDown') ||
|
||||
(!isSearching && commandOrCtrl && shiftKey && key === ']') ||
|
||||
(!isSearching && ctrlKey && key === 'Tab')
|
||||
) {
|
||||
const unreadOnly = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue