mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
Fix thirdLevelKey clause
This commit is contained in:
+1
-1
@@ -4954,7 +4954,7 @@
|
||||
(term.isMSWindows && ev.altKey && ev.ctrlKey && !ev.metaKey);
|
||||
|
||||
// Don't invoke for arrows, pageDown, home, backspace, etc. (on non-keypress events)
|
||||
return thirdLevelKey && (ev.type != 'keypress' || (!ev.keyCode || ev.keyCode > 47));
|
||||
return thirdLevelKey && ((ev.type != 'keypress') ? (!ev.keyCode || ev.keyCode > 47) : true);
|
||||
}
|
||||
|
||||
function matchColor(r1, g1, b1) {
|
||||
|
||||
Reference in New Issue
Block a user