diff --git a/app/menu.js b/app/menu.js index 5db95c1dd..80aa3aaaa 100644 --- a/app/menu.js +++ b/app/menu.js @@ -11,7 +11,6 @@ exports.createTemplate = (options, messages) => { openReleaseNotes, openSupportPage, platform, - setupWithImport, showAbout, showDebugLog, } = options; @@ -156,10 +155,6 @@ exports.createTemplate = (options, messages) => { fileMenu.submenu.unshift({ type: 'separator', }); - fileMenu.submenu.unshift({ - label: messages.menuSetupWithImport, - click: setupWithImport, - }); } if (platform === 'darwin') { @@ -170,7 +165,7 @@ exports.createTemplate = (options, messages) => { }; function updateForMac(template, messages, options) { - const { includeSetup, setupWithImport, showAbout, showWindow } = options; + const { includeSetup, showAbout, showWindow } = options; // Remove About item and separator from Help menu, since it's on the first menu template[4].submenu.pop(); @@ -184,12 +179,6 @@ function updateForMac(template, messages, options) { // the file menu first, though it ends up to the right of the Signal Desktop menu. const fileMenu = { label: messages.mainMenuFile, - submenu: [ - { - label: messages.menuSetupWithImport, - click: setupWithImport, - }, - ], }; template.unshift(fileMenu); diff --git a/test/app/fixtures/menu-mac-os-setup.json b/test/app/fixtures/menu-mac-os-setup.json index 5332b7b73..51ca2e0ae 100644 --- a/test/app/fixtures/menu-mac-os-setup.json +++ b/test/app/fixtures/menu-mac-os-setup.json @@ -34,13 +34,7 @@ ] }, { - "label": "&File", - "submenu": [ - { - "label": "Set Up with Import", - "click": null - } - ] + "label": "&File" }, { "label": "&Edit", @@ -79,22 +73,6 @@ { "label": "Select all", "role": "selectall" - }, - { - "type": "separator" - }, - { - "label": "Speech", - "submenu": [ - { - "label": "Start speaking", - "role": "startspeaking" - }, - { - "label": "Stop speaking", - "role": "stopspeaking" - } - ] } ] }, diff --git a/test/app/fixtures/menu-mac-os.json b/test/app/fixtures/menu-mac-os.json index 7e4a9a3c0..c8fd44637 100644 --- a/test/app/fixtures/menu-mac-os.json +++ b/test/app/fixtures/menu-mac-os.json @@ -70,22 +70,6 @@ { "label": "Select all", "role": "selectall" - }, - { - "type": "separator" - }, - { - "label": "Speech", - "submenu": [ - { - "label": "Start speaking", - "role": "startspeaking" - }, - { - "label": "Stop speaking", - "role": "stopspeaking" - } - ] } ] }, diff --git a/test/app/fixtures/menu-windows-linux-setup.json b/test/app/fixtures/menu-windows-linux-setup.json index 3425a1184..25d0eff82 100644 --- a/test/app/fixtures/menu-windows-linux-setup.json +++ b/test/app/fixtures/menu-windows-linux-setup.json @@ -2,10 +2,6 @@ { "label": "&File", "submenu": [ - { - "label": "Set Up with Import", - "click": null - }, { "type": "separator" },