mirror of
https://github.com/ironfox-oss/IronFox.git
synced 2026-04-20 06:58:04 -04:00
38 lines
2.1 KiB
Diff
38 lines
2.1 KiB
Diff
diff -r 5cafe8ddd023 -r a29897d2381c mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt
|
|
--- a/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt Mon Oct 28 08:38:19 2024 -0400
|
|
+++ b/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt Mon Oct 28 08:39:05 2024 -0400
|
|
@@ -740,12 +740,12 @@
|
|
|
|
val useStandardTrackingProtection by booleanPreference(
|
|
appContext.getPreferenceKey(R.string.pref_key_tracking_protection_standard_option),
|
|
- true,
|
|
+ false,
|
|
)
|
|
|
|
val useStrictTrackingProtection by booleanPreference(
|
|
appContext.getPreferenceKey(R.string.pref_key_tracking_protection_strict_default),
|
|
- false,
|
|
+ true,
|
|
)
|
|
|
|
val useCustomTrackingProtection by booleanPreference(
|
|
diff -r 5cafe8ddd023 -r a29897d2381c mobile/android/fenix/app/src/main/res/xml/tracking_protection_preferences.xml
|
|
--- a/mobile/android/fenix/app/src/main/res/xml/tracking_protection_preferences.xml Mon Oct 28 08:38:19 2024 -0400
|
|
+++ b/mobile/android/fenix/app/src/main/res/xml/tracking_protection_preferences.xml Mon Oct 28 08:39:05 2024 -0400
|
|
@@ -16,13 +16,13 @@
|
|
android:title="@string/preference_enhanced_tracking_protection"
|
|
app:iconSpaceReserved="false" />
|
|
<org.mozilla.fenix.settings.RadioButtonInfoPreference
|
|
- android:defaultValue="true"
|
|
+ android:defaultValue="false"
|
|
android:dependency="@string/pref_key_tracking_protection"
|
|
android:key="@string/pref_key_tracking_protection_standard_option"
|
|
android:summary="@string/preference_enhanced_tracking_protection_standard_description_5"
|
|
android:title="@string/preference_enhanced_tracking_protection_standard_default_1" />
|
|
<org.mozilla.fenix.settings.RadioButtonInfoPreference
|
|
- android:defaultValue="false"
|
|
+ android:defaultValue="true"
|
|
android:dependency="@string/pref_key_tracking_protection"
|
|
android:key="@string/pref_key_tracking_protection_strict_default"
|
|
android:summary="@string/preference_enhanced_tracking_protection_strict_description_4"
|