bugfix(text_box): ignoring tab key presses when alt is held (#348)
This commit is contained in:
parent
4e60d3f754
commit
32cab6eef6
1 changed files with 1 additions and 1 deletions
|
|
@ -991,7 +991,7 @@ where
|
||||||
status = Status::Captured;
|
status = Status::Captured;
|
||||||
}
|
}
|
||||||
Named::Tab => {
|
Named::Tab => {
|
||||||
if !modifiers.control() {
|
if !modifiers.control() && !modifiers.alt() {
|
||||||
if modifiers.shift() {
|
if modifiers.shift() {
|
||||||
editor.action(Action::Unindent);
|
editor.action(Action::Unindent);
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue