Skip to content

Commit

Permalink
fix(Windows): Remove minimize setting check on close event (#1038) @i…
Browse files Browse the repository at this point in the history
…maginarny

closes #763 
closes #1006
  • Loading branch information
imaginarny authored and adlk committed Nov 16, 2018
1 parent 79df7b5 commit af9d356
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const createWindow = () => {
mainWindow.hide();
}

if (isWindows && settings.get('minimizeToSystemTray')) {
if (isWindows) {
mainWindow.setSkipTaskbar(true);
}
} else {
Expand Down

0 comments on commit af9d356

Please sign in to comment.