搜尋 Mozilla 技術支援網站

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

了解更多

After upgrading to 16.0.1, menu entries on the menu bar flash when they are clicked on.

  • 7 回覆
  • 22 有這個問題
  • 6 次檢視
  • 最近回覆由 python1340

more options

It also occurs in any folder that I have in my Bookmarks Toolbar. Restarting in safe mode resolves the problem, but it returns after restarting normally. I also went through all of my Extensions and Plug-Ins disabling them individually and restarting after each, but I ended up with none of them enabled and the problem still exists.

It also occurs in any folder that I have in my Bookmarks Toolbar. Restarting in safe mode resolves the problem, but it returns after restarting normally. I also went through all of my Extensions and Plug-Ins disabling them individually and restarting after each, but I ended up with none of them enabled and the problem still exists.

被選擇的解決方法

Try to disable hardware acceleration in Firefox.

從原來的回覆中察看解決方案 👍 8

所有回覆 (7)

more options

選擇的解決方法

Try to disable hardware acceleration in Firefox.

more options

Yep, that fixed it. Thanks! But I shouldn't have to do this. Hopefully it will be fixed in the next RC. Thanks again.

Chris

more options

I have deployed Firefox to about 30 company computers and they are all set up with the Mozilla Update Service. When these computers automatically update to 16.0.1, I will have to go around to each computer and fix every single one. Please please fix this next release and save me this headache.

more options

You can disable hardware acceleration via a mozilla.cfg file in the Firefox program folder.

  • C:\Program Files\Mozilla Firefox\
  • C:\Program Files (x86)\Mozilla Firefox\

You can do that with pref() or lockPref()
You can set these prefs as a start and add others if you need to initialize those as well.

pref("layers.accelerate-all", false);
pref("layers.acceleration.disabled", true);

Use a mozilla.cfg file in the Firefox program folder to lock prefs or specify new (default) values.

Place a file local-settings.js in the defaults\pref folder where you also find the file channel-prefs.js to specify using mozilla.cfg.

pref("general.config.filename", "mozilla.cfg");
pref("general.config.obscure_value", 0); // use this to disable the byte-shift

See:

You can use these functions in mozilla.cfg:

defaultPref();  // set new default value
pref();         // set pref, but allow changes in current session
lockPref();     // lock pref, disallow changes
more options

You are missing the point. As a system administrator, I installed Firefox company-wide with Mozilla Maintenance Service turned on. That means Firefox is automatically updated. If Mozilla releases a new version that breaks everyone's Firefox in my company, and I am forced to go around to EVERY computer and apply the fix, then I might just go Chrome this time, so I don't get burned again.

more options

What good is Mozilla Maintenance Service if I can't trust Mozilla to release automatic updates that won't render my company's browsers inoperable?