Skip to content

Commit

Permalink
fix(Windows): Fix quit app, really!
Browse files Browse the repository at this point in the history
  • Loading branch information
adlk committed Dec 5, 2018
1 parent 79dc2a4 commit ca1d618
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/lib/Menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ export default class FranzMenu {
{
label: intl.formatMessage(menuItems.quit),
role: 'quit',
click: () => {
click() {
app.quit();
},
},
Expand Down Expand Up @@ -651,6 +651,10 @@ export default class FranzMenu {
{
label: intl.formatMessage(menuItems.quit),
role: 'quit',
accelerator: 'Ctrl+Q',
click() {
app.quit();
},
},
];

Expand Down

0 comments on commit ca1d618

Please sign in to comment.