From 0ca6faf5447840b8a324bbf717e3b3c7eec612de Mon Sep 17 00:00:00 2001 From: Guillermo Rauch Date: Sat, 16 Jul 2016 11:58:56 -0700 Subject: [PATCH] index: notify renderer of plugins changes --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 16574c41..6a540181 100644 --- a/index.js +++ b/index.js @@ -181,6 +181,7 @@ app.on('ready', () => { const pluginsUnsubscribe = plugins.subscribe((err) => { if (!err) { load(); + win.webContents.send('plugins change'); } });