Merge pull request #3909 from vector-im/t3chguy/favicon_improvements
Electron Tray Improvements
This commit is contained in:
commit
a9b5282ba3
6 changed files with 105 additions and 75 deletions
|
@ -161,12 +161,31 @@ function startAutoUpdate(update_base_url) {
|
|||
// no other way to catch this error).
|
||||
// Assuming we generally run from the console when developing,
|
||||
// this is far preferable.
|
||||
process.on('uncaughtException', function (error) {
|
||||
process.on('uncaughtException', function(error) {
|
||||
console.log("Unhandled exception", error);
|
||||
});
|
||||
|
||||
electron.ipcMain.on('install_update', installUpdate);
|
||||
|
||||
let focusHandlerAttached = false;
|
||||
electron.ipcMain.on('setBadgeCount', function(ev, count) {
|
||||
electron.app.setBadgeCount(count);
|
||||
if (process.platform === 'win32' && mainWindow && !mainWindow.isFocused()) {
|
||||
if (count > 0) {
|
||||
if (!focusHandlerAttached) {
|
||||
mainWindow.once('focus', () => {
|
||||
mainWindow.flashFrame(false);
|
||||
focusHandlerAttached = false;
|
||||
});
|
||||
focusHandlerAttached = true;
|
||||
}
|
||||
mainWindow.flashFrame(true);
|
||||
} else {
|
||||
mainWindow.flashFrame(false);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
electron.app.commandLine.appendSwitch('--enable-usermedia-screen-capturing');
|
||||
|
||||
const shouldQuit = electron.app.makeSingleInstance((commandLine, workingDirectory) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue