Files
IronFox/patches/disable-sync-by-default.patch
2025-04-28 11:56:29 +05:30

64 lines
2.7 KiB
Diff

From 548f0cc690192c3bd1b715e0d249d9eb41093523 Mon Sep 17 00:00:00 2001
From: Akash Yadav <itsaky01@gmail.com>
Date: Mon, 28 Apr 2025 11:02:07 +0530
Subject: [PATCH] fix(patches): update 'disable-sync-by-default.patch' for
'FIREFOX_138_0_BUILD1'
Signed-off-by: Akash Yadav <itsaky01@gmail.com>
---
.../main/res/xml/account_settings_preferences.xml | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/mobile/android/fenix/app/src/main/res/xml/account_settings_preferences.xml b/mobile/android/fenix/app/src/main/res/xml/account_settings_preferences.xml
index 300331efb5..f1cbf8ea99 100644
--- a/mobile/android/fenix/app/src/main/res/xml/account_settings_preferences.xml
+++ b/mobile/android/fenix/app/src/main/res/xml/account_settings_preferences.xml
@@ -29,38 +29,38 @@
android:layout="@layout/preference_cat_style">
<CheckBoxPreference
- android:defaultValue="true"
+ android:defaultValue="false"
android:key="@string/pref_key_sync_bookmarks"
android:layout="@layout/checkbox_left_preference"
android:title="@string/preferences_sync_bookmarks" />
<CheckBoxPreference
- android:defaultValue="true"
+ android:defaultValue="false"
android:key="@string/pref_key_sync_credit_cards"
android:layout="@layout/checkbox_left_preference"
android:title="@string/preferences_sync_credit_cards_2" />
<CheckBoxPreference
- android:defaultValue="true"
+ android:defaultValue="false"
android:key="@string/pref_key_sync_history"
android:layout="@layout/checkbox_left_preference"
android:title="@string/preferences_sync_history" />
<CheckBoxPreference
- android:defaultValue="true"
+ android:defaultValue="false"
android:key="@string/pref_key_sync_logins"
android:layout="@layout/checkbox_left_preference"
android:title="@string/preferences_sync_logins_2" />
<CheckBoxPreference
- android:defaultValue="true"
+ android:defaultValue="false"
android:key="@string/pref_key_sync_tabs"
android:layout="@layout/checkbox_left_preference"
android:title="@string/preferences_sync_tabs_2"/>
<!-- The default visibility is 'false' because we don't display this on most channels. -->
<CheckBoxPreference
- android:defaultValue="true"
+ android:defaultValue="false"
android:visible="false"
android:key="@string/pref_key_sync_address"
android:layout="@layout/checkbox_left_preference"
--
2.49.0