fix: filter out tab events with control modifier
This commit is contained in:
parent
8a0e74b189
commit
238603640c
1 changed files with 1 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ pub fn subscription() -> Subscription<Message> {
|
||||||
modifiers,
|
modifiers,
|
||||||
..
|
..
|
||||||
}) => match key {
|
}) => match key {
|
||||||
Named::Tab => {
|
Named::Tab if !modifiers.control() => {
|
||||||
return Some(if modifiers.shift() {
|
return Some(if modifiers.shift() {
|
||||||
Message::FocusPrevious
|
Message::FocusPrevious
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue