为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

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

You're welcome.

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?