fix: filter out tab events with control modifier

This commit is contained in:
Ashley Wulber 2025-03-04 15:47:57 -05:00 committed by Michael Murphy
parent 8a0e74b189
commit 238603640c

View file

@ -28,7 +28,7 @@ pub fn subscription() -> Subscription<Message> {
modifiers,
..
}) => match key {
Named::Tab => {
Named::Tab if !modifiers.control() => {
return Some(if modifiers.shift() {
Message::FocusPrevious
} else {