aboutsummaryrefslogtreecommitdiff
path: root/devel/electron33/files/patch-electron_lib_browser_api_dialog.ts
diff options
context:
space:
mode:
Diffstat (limited to 'devel/electron33/files/patch-electron_lib_browser_api_dialog.ts')
-rw-r--r--devel/electron33/files/patch-electron_lib_browser_api_dialog.ts11
1 files changed, 0 insertions, 11 deletions
diff --git a/devel/electron33/files/patch-electron_lib_browser_api_dialog.ts b/devel/electron33/files/patch-electron_lib_browser_api_dialog.ts
deleted file mode 100644
index bf3d098a23e7..000000000000
--- a/devel/electron33/files/patch-electron_lib_browser_api_dialog.ts
+++ /dev/null
@@ -1,11 +0,0 @@
---- electron/lib/browser/api/dialog.ts.orig 2024-10-09 13:53:06 UTC
-+++ electron/lib/browser/api/dialog.ts
-@@ -41,7 +41,7 @@ const normalizeAccessKey = (text: string) => {
- // existing single underscores with a second underscore, replace double
- // ampersands with a single ampersand, and replace a single ampersand with
- // a single underscore
-- if (process.platform === 'linux') {
-+ if (process.platform === 'linux' || process.platform === 'freebsd') {
- return text.replaceAll('_', '__').replaceAll(/&(.?)/g, (match, after) => {
- if (after === '&') return after;
- return `_${after}`;