mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-06 07:48:38 +09:00
No issue - Set the default for incremental cycle collector to be off.
Negative performance impact if enabled.
This commit is contained in:
parent
ccd69e165d
commit
c4d665a0d0
1 changed files with 4 additions and 1 deletions
|
|
@ -1212,7 +1212,10 @@ pref("dom.sysmsg.enabled", false);
|
|||
// Enable pre-installed applications.
|
||||
pref("dom.webapps.useCurrentProfile", false);
|
||||
|
||||
pref("dom.cycle_collector.incremental", true);
|
||||
// Use incremental cycle collection?
|
||||
// In practice this gave a noticeable performance hit. Default off.
|
||||
// See forum topic https://forum.palemoon.org/viewtopic.php?f=62&t=29887
|
||||
pref("dom.cycle_collector.incremental", false);
|
||||
|
||||
// Parsing perf prefs. For now just mimic what the old code did.
|
||||
#ifndef XP_WIN
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue