搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

Is there any way to prevent the right click context menu from combining Stop/Reload?

  • 7 回覆
  • 2 有這個問題
  • 33 次檢視
  • 最近回覆由 hlve

more options

Is there any way (about:config tweak, or something) to prevent the right click context menu from combining Stop/Reload?

Screenshot of what I'm talking about: http://picsend.net/images/873089StupidReloadSto.png

Is there any way (about:config tweak, or something) to prevent the right click context menu from combining Stop/Reload? Screenshot of what I'm talking about: http://picsend.net/images/873089StupidReloadSto.png

被選擇的解決方法

Try to add this code to the userChrome.css file below the default @namespace line.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.

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

#context-stop,#context-reload[hidden="true"] { display: -moz-box!important; }
從原來的回覆中察看解決方案 👍 2

所有回覆 (7)

more options

Yes just reverse the left to right order.

When you customise by using the menu or by right clicking a space the reload is on the left and the stop is on the right, drag and drop one of them to so stop is on the left.

more options

I wasn't talking about the navigation.

I was referring to the right click context menu.

more options

:-( Sorry
I did not read your question properly, or initially look at the screenshots you linked to.

As you have discovered the right click option offers the relevant reload or stop option, and matches what is offered on the navigation bar. I am not sure if that can be changed.

I wonder why you should wish it to be changed,in normal circumstances the option offered is the option you will be able to use. What circumstances have you found where it would be handy to have the other option available form right click ?

more options

"I wonder why you should wish it to be changed,in normal circumstances the option offered is the option you will be able to use" I guess I'm just used to it being one way (the old menu had both options available) and I became familiar with it.

more options

I did try the add-on Menu Editor https://addons.mozilla.org/en-US/firefox/addon/menu-editor/ but even when I separate the navigation reload and stop icons and explicitly have both stop and reload set to be visible on the right click context menu I only get the one option showing.

Whilst there may be some way of changing this I do not know how to and I do not really see any use case for making such a change. Only one option of the choice: stop or reload, is available at any instance in time, but that is the option you are able to use, the other option is not active and so is not displayed.

more options

選擇的解決方法

Try to add this code to the userChrome.css file below the default @namespace line.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.

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

#context-stop,#context-reload[hidden="true"] { display: -moz-box!important; }

由 cor-el 於 修改

more options

Thank you very much! Exactly what I was looking for.