Fix shortcuts with `Shift` (#34614)

Oleksiy Syvokon created

Closes #34605, #34606, #34609

Release Notes:

- Fixed shortcuts involving Shift

Change summary

crates/gpui/src/platform/linux/platform.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/gpui/src/platform/linux/platform.rs 🔗

@@ -837,7 +837,7 @@ impl crate::Keystroke {
                     && key.is_ascii()
                 {
                     if key.is_ascii_graphic() {
-                        key_utf8.clone()
+                        key_utf8.to_lowercase()
                     // map ctrl-a to a
                     } else if key_utf32 <= 0x1f {
                         ((key_utf32 as u8 + 0x60) as char).to_string()