mirror of
https://git.freebsd.org/ports.git
synced 2025-06-23 05:30:31 -04:00
11 lines
605 B
TypeScript
11 lines
605 B
TypeScript
--- electron/lib/browser/api/dialog.ts.orig 2021-01-25 12:13:30 UTC
|
|
+++ electron/lib/browser/api/dialog.ts
|
|
@@ -40,7 +40,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.replace(/_/g, '__').replace(/&(.?)/g, (match, after) => {
|
|
if (after === '&') return after;
|
|
return `_${after}`;
|