Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

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

  • 7 ответов
  • 2 имеют эту проблему
  • 39 просмотров
  • Последний ответ от 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.