fix: remove esc key listener in macOS
This commit is contained in:
parent
6c0066dbfb
commit
66d93ea037
1 changed files with 3 additions and 3 deletions
|
@ -35,9 +35,9 @@ const Layout = () => {
|
|||
|
||||
useEffect(() => {
|
||||
window.addEventListener("keydown", (e) => {
|
||||
if (e.key === "Escape") {
|
||||
if (OS === "macos") appWindow.hide();
|
||||
else appWindow.close();
|
||||
// macOS有cmd+w
|
||||
if (e.key === "Escape" && OS !== "macos") {
|
||||
appWindow.close();
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue