зеркало из https://github.com/mozilla/pjs.git
Bug 407193: Restore animateFadeIn behavior for Mac prefpanes (revert fix for bug 394881). r=mconnor, a=blocking-firefox3+
This commit is contained in:
Родитель
1049808c9b
Коммит
c8da37ad97
|
@ -454,7 +454,11 @@ pref("browser.preferences.instantApply", false);
|
|||
#else
|
||||
pref("browser.preferences.instantApply", true);
|
||||
#endif
|
||||
#ifdef XP_MACOSX
|
||||
pref("browser.preferences.animateFadeIn", true);
|
||||
#else
|
||||
pref("browser.preferences.animateFadeIn", false);
|
||||
#endif
|
||||
|
||||
pref("browser.download.show_plugins_in_list", true);
|
||||
pref("browser.download.hide_plugins_without_extensions", true);
|
||||
|
|
|
@ -799,7 +799,11 @@
|
|||
<![CDATA[
|
||||
var psvc = Components.classes["@mozilla.org/preferences-service;1"]
|
||||
.getService(Components.interfaces.nsIPrefBranch);
|
||||
#ifdef XP_MACOSX
|
||||
var animate = true;
|
||||
#else
|
||||
var animate = false;
|
||||
#endif
|
||||
try {
|
||||
animate = psvc.getBoolPref("browser.preferences.animateFadeIn");
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче