Fixed error on tray quit.

This commit is contained in:
Quentin Decaunes 2019-03-02 16:18:49 +01:00
parent 58fff43ad1
commit b44926f9f5

View File

@ -66,8 +66,8 @@ function createWindow () {
{
label: 'Quit',
click: function () {
application.isQuiting = true;
application.quit();
app.isQuiting = true;
app.quit();
}
}
]);