diff options
Diffstat (limited to 'editors/atom/files/patch-src_main-process_atom-application.js')
-rw-r--r-- | editors/atom/files/patch-src_main-process_atom-application.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/editors/atom/files/patch-src_main-process_atom-application.js b/editors/atom/files/patch-src_main-process_atom-application.js new file mode 100644 index 000000000000..5b3b0e364a40 --- /dev/null +++ b/editors/atom/files/patch-src_main-process_atom-application.js @@ -0,0 +1,11 @@ +--- src/main-process/atom-application.js.orig 2019-10-21 17:33:40 UTC ++++ src/main-process/atom-application.js +@@ -463,7 +463,7 @@ module.exports = class AtomApplication extends EventEm + if (this.applicationMenu != null) { + this.applicationMenu.enableWindowSpecificItems(false); + } +- if (['win32', 'linux'].includes(process.platform)) { ++ if (['win32', 'linux', 'freebsd'].includes(process.platform)) { + app.quit(); + return; + } |