Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix for v68+
  • Loading branch information
Sporif committed Apr 28, 2019
1 parent 2c18281 commit b1c169d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion userChrome.css
Expand Up @@ -5,6 +5,6 @@ https://opensource.org/licenses/MIT

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

#PanelUI-menu-button {
toolbarbutton#alltabs-button {
-moz-binding: url("userChrome.xml#js");
}
2 changes: 1 addition & 1 deletion userChrome.xml
Expand Up @@ -6,7 +6,7 @@ https://opensource.org/licenses/MIT

<!-- Run userChrome.js/userChrome.xul and .uc.js/.uc.xul/.css files -->
<bindings xmlns="http://www.mozilla.org/xbl">
<binding id="js" extends="chrome://global/content/bindings/toolbarbutton.xml#menu">
<binding id="js" extends="chrome://global/content/bindings/toolbarbutton.xml#toolbarbutton-badged">
<implementation>
<constructor><![CDATA[
if(window.userChromeJsMod) return;
Expand Down

3 comments on commit b1c169d

@hg42
Copy link

@hg42 hg42 commented on b1c169d Apr 28, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

interesting, I had the same problem at about the same time...and just wanted to create a PR for the same change...

@Sporif
Copy link
Owner Author

@Sporif Sporif commented on b1c169d Apr 28, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@hg42 Yeah this was actually my fault as previously upstream fixed it for v62+ this way, but I decided to fix it by switching to panelui-menu for some reason. Now its come back to bite me. 😬

@hg42
Copy link

@hg42 hg42 commented on b1c169d Apr 29, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no prob, it"s a lot of guesswork with firefox nowadays...

I lived some hours without all my beloved tweaks (e.g. a multiline bookmarks bar with color coding).
Now I know again, how much I need userChrome.

During this time I started to hate mozilla for another restriction. But fortunately, I found a solution on reddit as soon as I had time to search for it.
I am really glad it wasn"t some new mozilla policy.

Please sign in to comment.