fix(keyboard): Fix shift+tab handling (#836)

Refs #445
macos-click-through
partizan 3 years ago committed by GitHub
parent f6a8ffced0
commit 3da8b56b74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -188,6 +188,7 @@ fn is_control_key(key: Key<'static>) -> Option<&str> {
Key::End => Some("End"),
Key::PageUp => Some("PageUp"),
Key::PageDown => Some("PageDown"),
Key::Tab => Some("Tab"),
_ => None,
}
}

Loading…
Cancel
Save