diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2020-02-19 20:02:31 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2020-02-19 20:02:31 +0000 |
commit | 3bd4ee6968e866ad13694693027d8f6a684ca4db (patch) | |
tree | 2305e4348491a391ecbcf0e9bb62221589098729 /editors/atom/files/patch-packages_welcome_lib_guide-view.js | |
parent | Update webkit2-gtk3 to 2.26.4. (diff) |
Add atom 1.44.0, hackable text editor for the 21st century.
Many thanks to the maintainer Hiroki for his very appreciated work on it.
Diffstat (limited to 'editors/atom/files/patch-packages_welcome_lib_guide-view.js')
-rw-r--r-- | editors/atom/files/patch-packages_welcome_lib_guide-view.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/editors/atom/files/patch-packages_welcome_lib_guide-view.js b/editors/atom/files/patch-packages_welcome_lib_guide-view.js new file mode 100644 index 000000000000..2d5a2ab28855 --- /dev/null +++ b/editors/atom/files/patch-packages_welcome_lib_guide-view.js @@ -0,0 +1,11 @@ +--- packages/welcome/lib/guide-view.js.orig 2019-12-27 05:12:53 UTC ++++ packages/welcome/lib/guide-view.js +@@ -380,7 +380,7 @@ export default class GuideView { + getApplicationMenuName() { + if (process.platform === 'darwin') { + return 'Atom'; +- } else if (process.platform === 'linux') { ++ } else if (process.platform === 'linux' || process.platform === 'freebsd') { + return 'Edit'; + } else { + return 'File'; |