diff --git a/docs/Changelog.md b/docs/Changelog.md index 39032e3..4deb187 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -11,12 +11,14 @@ Setting versions are documented using the pref `librewolf.cfg.version`, availabl - thumbnails are only used in privileged code to populate New Tab Page and Ctrl+Tab previews. - the startup blank window doesn't break anything and the perceived performance boost is irrelevant on modern hardware. +- reset popup events to default as it's mostly a non-issue. #### Removed preferences ``` defaultPref("browser.pagethumbnails.capturing_disabled", true); defaultPref("browser.startup.blankWindow", false); +defaultPref("dom.popup_allowed_events", "click dblclick mousedown pointerdown"); ``` # 7.4 diff --git a/librewolf.cfg b/librewolf.cfg index 5479e6a..c0cbed3 100755 --- a/librewolf.cfg +++ b/librewolf.cfg @@ -284,10 +284,6 @@ defaultPref("browser.download.alwaysOpenPanel", false); // do not expand toolbar defaultPref("media.autoplay.default", 5); /** [SECTION] POP-UPS AND WINDOWS - * disable annoyin pop-ups and limit events that can trigger them. - */ -defaultPref("dom.popup_allowed_events", "click dblclick mousedown pointerdown"); -/** * prevent scripts from resizing existing windows and opening new ones, by forcing them into * new tabs that can't be resized as well. */