From b5649a6874550c066e478b00490dacb9f00f37d3 Mon Sep 17 00:00:00 2001 From: lilia Date: Thu, 27 Apr 2017 18:03:22 -0700 Subject: [PATCH] Add ability to unhide the window from the renderer via ipc, for instance if a notification is clicked but the window is closed/hidden. // FREEBIE --- main.js | 6 +++++- preload.js | 4 ++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/main.js b/main.js index 4bcb4aa54..74a7821f5 100644 --- a/main.js +++ b/main.js @@ -141,7 +141,11 @@ function createWindow () { // in an array if your app supports multi windows, this is the time // when you should delete the corresponding element. mainWindow = null - }) + }); + + ipc.on('show-window', function() { + mainWindow.show(); + }); } // This method will be called when Electron has finished diff --git a/preload.js b/preload.js index 4d4cc0ea9..b306230da 100644 --- a/preload.js +++ b/preload.js @@ -15,6 +15,10 @@ console.log('draw attention'); ipc.send('draw-attention'); }; + window.showWindow = function() { + console.log('show window'); + ipc.send('show-window'); + }; /** * Enables spell-checking and the right-click context menu in text editors. * Electron (`webFrame.setSpellCheckProvider`) only underlines misspelled words;