From 2aeb7696c3164160e0be072c13b10af06bdbb38c Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Mon, 8 Jan 2018 07:34:09 -0500 Subject: [PATCH] fix https://github.com/gorhill/uBlock/issues/3416 --- src/js/popup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/popup.js b/src/js/popup.js index c9a8e27..8395bdb 100644 --- a/src/js/popup.js +++ b/src/js/popup.js @@ -1293,7 +1293,7 @@ function buttonReloadHandler(ev) { vAPI.messaging.send('popup.js', { what: 'forceReloadTab', tabId: matrixSnapshot.tabId, - bypassCache: ev.shiftKey + bypassCache: ev.ctrlKey || ev.metaKey || ev.shiftKey }); }