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