Bugfix: messageview focused [Tab] key should not traverse back to messagelist

This commit is contained in:
djmaze 2021-07-21 14:15:31 +02:00
parent 5ef49f9b8e
commit eec3f46c34
2 changed files with 2 additions and 3 deletions

View file

@ -541,8 +541,7 @@ class MessageViewMailBoxUserView extends AbstractViewRight {
return false;
}
});
// shortcuts.add('tab', 'shift', Scope.MessageView, (event, handler) => {
shortcuts.add('tab', '', Scope.MessageView, () => {
shortcuts.add('tab', 'shift', Scope.MessageView, () => {
if (!this.fullScreenMode() && this.message() && SettingsUserStore.usePreviewPane()) {
AppUserStore.focusedState(Scope.MessageList);
}