1
Fork 0

Hide the audio processor even more!

This commit is contained in:
Jake Howard 2015-11-04 22:59:48 +00:00
parent 8a114b5821
commit de95e194f3
1 changed files with 7 additions and 4 deletions

View File

@ -45,10 +45,13 @@ app.on('ready', function () {
});
audioController = new BrowserWindow({
width: 1,
height: 1,
hide: true,
frame: false
width: 0,
height: 0,
show: false,
frame: false,
transparent: true,
'skip-taskbar': true,
});
audioController.loadUrl('file://' + __dirname + '/audio.html');
audioController.on('closed', function () { delete audioController; });