Skip to content

Commit

Permalink
Added new Launch Minimized option
Browse files Browse the repository at this point in the history
  • Loading branch information
klaudiosinani committed Jan 6, 2019
1 parent 6b03e47 commit 2bd294c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/menu/file.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,13 @@ module.exports = {
settings.set('autoLaunch', item.checked);
activate('auto-launch');
}
}, {
label: 'Launch Minimized',
type: 'checkbox',
checked: settings.get('launchMinimized'),
click(item) {
settings.set('launchMinimized', item.checked);
}
}, {
type: 'separator'
}, {
Expand Down

0 comments on commit 2bd294c

Please sign in to comment.