DEV-2832: Automatically minimize Screen Share app when sharing window is confirmed

This commit is contained in:
Zach Fox 2019-11-27 12:55:44 -05:00
parent 37efdfd3d4
commit d4b50523c2

View file

@ -7,6 +7,8 @@
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
const { remote } = require('electron');
// Helpers
function handleError(error) {
if (error) {
@ -221,6 +223,7 @@ function onAccessApproved(desktop_id) {
}
}
}, gotStream, handleError);
remote.getCurrentWindow().minimize();
}