1

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

View File

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