Skip to content

Commit

Permalink
fix(Menu): Fix File -> Quit menu entry (#888) @dabalroman
Browse files Browse the repository at this point in the history
Sience last update "Quit" option under File menu item isn't working.
It's probably because lines 647 - 649 were removed from Menu.js in f720d30.
  • Loading branch information
dabalroman authored and adlk committed Nov 15, 2018
1 parent 1790b79 commit 4115b27
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/lib/Menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -589,6 +589,9 @@ export default class FranzMenu {
{
label: intl.formatMessage(menuItems.quit),
role: 'quit',
click: () => {
app.quit();
},
},
],
});
Expand Down

0 comments on commit 4115b27

Please sign in to comment.