mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-04 19:56:45 +02:00
stop ctrl-tab etc from triggering an autocomplete
This commit is contained in:
parent
2e772e2f19
commit
825e6702ef
@ -219,6 +219,9 @@ class TabComplete {
|
||||
return;
|
||||
}
|
||||
|
||||
// ctrl-tab/alt-tab etc shouldn't trigger a complete
|
||||
if (ev.ctrlKey || ev.metaKey || ev.altKey) return;
|
||||
|
||||
// tab key has been pressed at this point
|
||||
this.handleTabPress(false, ev.shiftKey)
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user