From d879c507a55bd7060699a943a26554f633fd24a4 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Tue, 13 Aug 2024 00:06:34 -0400 Subject: [PATCH] Enable auto-scroll by default on Linux Fixes #4537 --- app/build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/build.sh b/app/build.sh index ab6f2a16af..309835ca70 100755 --- a/app/build.sh +++ b/app/build.sh @@ -300,6 +300,9 @@ elif [ $BUILD_LINUX == 1 ]; then # Modify platform-specific prefs perl -pi -e 's/pref\("browser\.preferences\.instantApply", false\);/pref\("browser\.preferences\.instantApply", true);/' $prefs_file perl -pi -e 's/%GECKO_VERSION%/'"$GECKO_VERSION_LINUX"'/g' $prefs_file + # Auto-scroll is disabled by default on Linux + # https://bugzilla.mozilla.org/show_bug.cgi?id=1747208 + perl -pi -e 's/pref\("general\.autoScroll", false\);/pref\("general.autoScroll", true);/' $prefs_file fi # Clear list of built-in add-ons