mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-06-15 18:56:57 +08:00
修复showSystemList无法通过回车进行选择的BUG
This commit is contained in:
parent
724bd9e4e7
commit
2625a25584
@ -520,6 +520,10 @@ document.addEventListener("DOMContentLoaded", () => {
|
|||||||
if (dialogType === "textarea" && !e.ctrlKey) {
|
if (dialogType === "textarea" && !e.ctrlKey) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
// select 类型有自己的键盘处理器,不需要全局处理器处理 Enter 键
|
||||||
|
if (dialogType === "select") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
document.getElementById("ok-btn").click();
|
document.getElementById("ok-btn").click();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user