From 6c6707ae9b729a676ae1420d2a62c287fd3f39ab Mon Sep 17 00:00:00 2001 From: Arlo Breault Date: Sat, 13 Jul 2019 12:48:21 +0200 Subject: [PATCH] Set the browser action icon to off when webrtc is disabled This is now necessary since the webextension changed to default to on. Follow up to 095f4a0 From trac 31067 --- proxy/init-webext.js | 1 + 1 file changed, 1 insertion(+) diff --git a/proxy/init-webext.js b/proxy/init-webext.js index 2f4f156..c641621 100644 --- a/proxy/init-webext.js +++ b/proxy/init-webext.js @@ -36,6 +36,7 @@ var debug, snowflake, config, broker, ui, log, dbg, init, update, silenceNotific missingFeature: true }); }); + chrome.browserAction.setIcon({ path: { 32: "icons/status-off.png" } }); return; }