Don't show previews in the app switcher by default

This commit is contained in:
nielsandriesse 2020-09-16 16:48:56 +10:00
parent 040fe153c4
commit c660acc3e7
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@
android:dependency="pref_timeout_passphrase" />
<org.thoughtcrime.securesms.components.SwitchPreferenceCompat
android:defaultValue="false"
android:defaultValue="true"
android:key="pref_screen_security"
android:title="@string/preferences__screen_security"
android:summary="@string/preferences__disable_screen_security_to_allow_screen_shots" />

View File

@ -826,7 +826,7 @@ public class TextSecurePreferences {
}
public static boolean isScreenSecurityEnabled(Context context) {
return getBooleanPreference(context, SCREEN_SECURITY_PREF, false);
return getBooleanPreference(context, SCREEN_SECURITY_PREF, true);
}
public static boolean isLegacyUseLocalApnsEnabled(Context context) {