Skip to content
This repository has been archived by the owner on Oct 22, 2021. It is now read-only.

fix: restrict fix #265 to Win32, close #1063 #1083

Merged
merged 1 commit into from
Mar 14, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/_renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -1103,7 +1103,7 @@ document.addEventListener("keydown", e => {

// Fix #265
window.addEventListener("keyup", e => {
if (e.key === "F4" && e.altKey === true) {
if (require("os").platform() === "win32" && e.key === "F4" && e.altKey === true) {
electron.remote.app.quit();
}
});
Expand Down