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