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

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?