fix double-toggle on Cmd+P preview, remove duplicate key binding

This commit is contained in:
jess 2026-04-07 18:24:13 -07:00
parent 95ecdf3c95
commit 88e134c01c
1 changed files with 0 additions and 3 deletions

View File

@ -163,9 +163,6 @@ fn macos_key_binding(key_press: KeyPress) -> Option<Binding<Message>> {
}
match key.as_ref() {
keyboard::Key::Character("p") if modifiers.logo() => {
Some(Binding::Custom(Message::TogglePreview))
}
keyboard::Key::Character("=" | "+") if modifiers.logo() => {
Some(Binding::Custom(Message::ZoomIn))
}