Add standard menus

This commit is contained in:
lilia 2017-04-05 11:29:43 -07:00 committed by Scott Nonnenberg
parent 25b0fbd949
commit e112217095
No known key found for this signature in database
GPG key ID: A4931C09644C654B
2 changed files with 155 additions and 0 deletions

View file

@ -7,6 +7,7 @@ const fs = require('fs')
const autoUpdater = require('electron-updater').autoUpdater
const autoUpdaterInterval = 60 * 60 * 1000;
const ipc = electron.ipcMain;
const Menu = electron.Menu;
app.setAppUserModelId('org.whispersystems.signal-desktop')
@ -91,6 +92,10 @@ app.on('ready', function() {
setInterval(function() { autoUpdater.checkForUpdates(); }, autoUpdaterInterval);
}
let template = require('./menu.js');
const menu = Menu.buildFromTemplate(template)
Menu.setApplicationMenu(menu)
createWindow();
})