browser(firefox): always create new process rather than reuse one (#3312)
This commit is contained in:
parent
c45f7afe61
commit
9effb32650
|
|
@ -1,2 +1,2 @@
|
|||
1152
|
||||
Changed: yurys@chromium.org Tue Aug 4 17:40:33 PDT 2020
|
||||
1153
|
||||
Changed: yurys@chromium.org Wed Aug 5 13:40:00 PDT 2020
|
||||
|
|
|
|||
|
|
@ -10,6 +10,10 @@ pref("ui.systemUsesDarkTheme", 0);
|
|||
//
|
||||
pref("dom.ipc.processCount", 60000);
|
||||
|
||||
// Never reuse processes as they may keep previously overridden values
|
||||
// (locale, timezone etc.).
|
||||
pref("dom.ipc.processPrelaunch.enabled", false);
|
||||
|
||||
// Do not use system colors - they are affected by themes.
|
||||
pref("ui.use_standins_for_native_colors", true);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue