Correctly show the `shift` icon for keybindings on macOS (#9235)

Antonio Scandurra and Nathan created

Release Notes:

- N/A

Co-authored-by: Nathan <nathan@zed.dev>

Change summary

crates/ui/src/components/keybinding.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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("+"))
                         }