change show logic to same as that of the tray icon

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/3709/head
Michael Telatynski 2017-04-23 09:56:43 +01:00
parent 8b4ab4bcdd
commit 2139fb74bb
1 changed files with 6 additions and 5 deletions

View File

@ -106,13 +106,14 @@ export default class ElectronPlatform extends VectorBasePlatform {
notification.onclick = function() {
dis.dispatch({
action: 'view_room',
room_id: room.roomId
room_id: room.roomId,
});
global.focus();
const currentWin = electron.remote.getCurrentWindow();
currentWin.show();
currentWin.restore();
currentWin.focus();
const win = electron.remote.getCurrentWindow();
if (win.isMinimized()) win.restore();
else if (!win.isVisible()) win.show();
else win.focus();
};
return notification;