From 30698293bf39959853548772148f90803839a273 Mon Sep 17 00:00:00 2001 From: Chris Wren Date: Wed, 27 Aug 2014 14:16:48 -0400 Subject: [PATCH] default to lock_screen_notifications_summary_show. When the user selects a secure unlock method for the first time, default to 'Show all notification content'. Bug: 17010183 Change-Id: I4953e2b1e605bf6f13240ef0483a37265263ea8d --- .../android/settings/notification/RedactionInterstitial.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/android/settings/notification/RedactionInterstitial.java b/src/com/android/settings/notification/RedactionInterstitial.java index 773f3af7e78..2bfad1a07e5 100644 --- a/src/com/android/settings/notification/RedactionInterstitial.java +++ b/src/com/android/settings/notification/RedactionInterstitial.java @@ -82,7 +82,7 @@ public class RedactionInterstitial extends SettingsActivity { final boolean enabled = Settings.Secure.getInt(getContentResolver(), Settings.Secure.LOCK_SCREEN_SHOW_NOTIFICATIONS, 0) != 0; final boolean show = Settings.Secure.getInt(getContentResolver(), - Settings.Secure.LOCK_SCREEN_ALLOW_PRIVATE_NOTIFICATIONS, 0) != 0; + Settings.Secure.LOCK_SCREEN_ALLOW_PRIVATE_NOTIFICATIONS, 1) != 0; mShowAllButton.setChecked(enabled && show); mRedactSensitiveButton.setChecked(enabled && !show); mHideAllButton.setChecked(!enabled);