bugfix(text_box): ignoring tab key presses when alt is held (#348)

This commit is contained in:
ellieplayswow 2025-05-08 02:34:58 +01:00 committed by GitHub
parent 4e60d3f754
commit 32cab6eef6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -991,7 +991,7 @@ where
status = Status::Captured;
}
Named::Tab => {
if !modifiers.control() {
if !modifiers.control() && !modifiers.alt() {
if modifiers.shift() {
editor.action(Action::Unindent);
} else {