Fix missing arrows

This commit is contained in:
Nate Butler 2023-11-28 15:15:49 -05:00
parent 21755c7d20
commit 525fe70de6
2 changed files with 2 additions and 5 deletions

View file

@ -39,7 +39,7 @@ impl RenderOnce for KeyBinding {
.when(keystroke.modifiers.shift, |el| {
el.child(KeyIcon::new(Icon::Shift))
})
// .when_some(key_icon, |el, icon| el.child(KeyIcon::new(icon)))
.when_some(key_icon, |el, icon| el.child(KeyIcon::new(icon)))
.when(key_icon.is_none(), |el| {
el.child(Key::new(keystroke.key.to_uppercase().clone()))
})