diff --git a/crates/ui/src/components/keybinding.rs b/crates/ui/src/components/keybinding.rs index 5e64c0b879..3135a076d9 100644 --- a/crates/ui/src/components/keybinding.rs +++ b/crates/ui/src/components/keybinding.rs @@ -132,7 +132,7 @@ impl RenderOnce for KeyBinding { } }) .when(keystroke.modifiers.shift, |el| match self.display { - KeyBindingDisplay::Mac => el.child(KeyIcon::new(IconName::Option)), + KeyBindingDisplay::Mac => el.child(KeyIcon::new(IconName::Shift)), KeyBindingDisplay::Linux | KeyBindingDisplay::Windows => { el.child(Key::new("Shift")).child(Key::new("+")) }