From 15ee6b919456950b05adcb2431a83f331bc06318 Mon Sep 17 00:00:00 2001 From: Jonatan Heyman Date: Fri, 12 Jan 2024 14:29:36 +0100 Subject: [PATCH] Change "Preferences" to "Settings" in the application menu (#100) --- electron/main/menu.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electron/main/menu.ts b/electron/main/menu.ts index cb56c8c..39f942c 100644 --- a/electron/main/menu.ts +++ b/electron/main/menu.ts @@ -19,7 +19,7 @@ const template = [ }, { type: 'separator' }, { - label: 'Preferences', + label: 'Settings', click: (menuItem, window, event) => { window?.webContents.send(OPEN_SETTINGS_EVENT) }, @@ -38,7 +38,7 @@ const template = [ role: 'fileMenu', submenu: [ { - label: 'Preferences', + label: 'Settings', click: (menuItem, window, event) => { window?.webContents.send(OPEN_SETTINGS_EVENT) },