diff --git a/crates/ui/src/components/keybinding.rs b/crates/ui/src/components/keybinding.rs index 5e64c0b879fbf74f5b3fcef421d9d34de0434e51..3135a076d940610d5f0111c37d4b5a7398af76c6 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("+")) }