Hide the audio processor even more!
This commit is contained in:
parent
8a114b5821
commit
de95e194f3
1 changed files with 7 additions and 4 deletions
11
src/main.js
11
src/main.js
|
@ -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; });
|
||||
|
|
Reference in a new issue