Add keystroke for menu item only when action is equal to binding

This fixes a bug where we would show `cmd-e` instead of `cmd-f` for
`Edit -> Find` because both bindings would have the `buffer_search::Deploy`
action and we were mistakenly selecting the former.
This commit is contained in:
Antonio Scandurra 2022-06-06 09:18:58 +02:00
parent 3a69943df3
commit 22dd68fbfb
2 changed files with 6 additions and 2 deletions

View file

@ -154,7 +154,7 @@ impl MacForegroundPlatform {
let mut keystroke = None;
if let Some(binding) = keystroke_matcher
.bindings_for_action_type(action.as_any().type_id())
.next()
.find(|binding| binding.action().eq(action.as_ref()))
{
if binding.keystrokes().len() == 1 {
keystroke = binding.keystrokes().first()