未验证 提交 05526706 编写于 作者: G GitSquared

🐛 Fix altgraph key not being released on linux

上级 b5341b6a
...@@ -1118,7 +1118,7 @@ class Keyboard { ...@@ -1118,7 +1118,7 @@ class Keyboard {
document.onkeyup = (e) => { document.onkeyup = (e) => {
// See #330 // See #330
if (e.getModifierState("AltGraph")) return; if (e.key !== "AltGraph" && e.getModifierState("AltGraph")) return;
let key = findKey(e); let key = findKey(e);
if (key === null) return; if (key === null) return;
if (key.length) { if (key.length) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册