[Pkg-mozext-commits] [tabmixplus] 30/48: Stop using menu-button type for reload-button from Firefox 55

David Prévot taffit at moszumanska.debian.org
Sun Aug 20 03:14:37 UTC 2017


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository tabmixplus.

commit 402b05ff79f92f8ccfcf2741bc633848209e059e
Author: onemen <tabmix.onemen at gmail.com>
Date:   Sun Aug 13 12:31:52 2017 +0300

    Stop using menu-button type for reload-button from Firefox 55
---
 chrome/content/tab/tab.js | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/chrome/content/tab/tab.js b/chrome/content/tab/tab.js
index 9759496..3caf4ba 100644
--- a/chrome/content/tab/tab.js
+++ b/chrome/content/tab/tab.js
@@ -2391,7 +2391,9 @@ gTMPprefObserver = {
   // Show Reload Every menu on Reload button
   showReloadEveryOnReloadButton() {
     let show = Tabmix.prefs.getBoolPref("reloadEvery.onReloadButton");
-    Tabmix.setItem("reload-button", "type", show ? "menu-button" : null);
+    if (!Tabmix.isVersion(550)) {
+      Tabmix.setItem("reload-button", "type", show ? "menu-button" : null);
+    }
     Tabmix.setItem("urlbar-go-button", "context", show ? "autoreload_popup" : null);
 
     let setContext = function(command) {

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/tabmixplus.git



More information about the Pkg-mozext-commits mailing list