mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-09-30 00:16:02 +08:00
fix(keymap): the remove and go to prev/next keys were reversed
Fixes #924
This commit is contained in:
parent
eb3223580b
commit
5057ad3d20
1 changed files with 2 additions and 2 deletions
|
@ -212,9 +212,9 @@ class ThreadList extends React.Component
|
|||
'application:mark-as-unread': @_onMarkUnreadItem
|
||||
'application:mark-as-read': @_onMarkReadItem
|
||||
'application:remove-and-previous': =>
|
||||
@_shift(offset: 1, afterRunning: @_onRemoveFromView)
|
||||
'application:remove-and-next': =>
|
||||
@_shift(offset: -1, afterRunning: @_onRemoveFromView)
|
||||
'application:remove-and-next': =>
|
||||
@_shift(offset: 1, afterRunning: @_onRemoveFromView)
|
||||
|
||||
render: ->
|
||||
<KeyCommandsRegion globalHandlers={@_keymapHandlers()}
|
||||
|
|
Loading…
Add table
Reference in a new issue