🐛 修复搜索无法输入内容的BUG

This commit is contained in:
Wisp X
2022-01-13 08:45:10 +08:00
parent 839b1b5927
commit 0481188a66

View File

@@ -392,8 +392,8 @@
});
$(document).keydown(e => {
e.preventDefault();
if (e.keyCode === 65 && (e.altKey || e.metaKey)) {
e.preventDefault();
ds.setSelection($(PHOTOS_ITEM));
}
});