fix tests

pull/1707/head
Audric Ackermann 4 years ago
parent 9204d2f5dd
commit 9213f20930
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -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);

@ -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"
}
]
}
]
},

@ -70,22 +70,6 @@
{
"label": "Select all",
"role": "selectall"
},
{
"type": "separator"
},
{
"label": "Speech",
"submenu": [
{
"label": "Start speaking",
"role": "startspeaking"
},
{
"label": "Stop speaking",
"role": "stopspeaking"
}
]
}
]
},

@ -2,10 +2,6 @@
{
"label": "&File",
"submenu": [
{
"label": "Set Up with Import",
"click": null
},
{
"type": "separator"
},

Loading…
Cancel
Save