From 767c0bf71b9c0af7f8451d7d355f6efad21a6e5b Mon Sep 17 00:00:00 2001 From: Chieu Nguyen Date: Mon, 27 Apr 2015 12:15:36 -0700 Subject: Restore preference change update to show app icon setting. Bug: 20544640 Change-Id: I6e2a26a8a5e43360dfefcc85bb46eae28f5e3867 --- java/src/com/android/inputmethod/latin/SystemBroadcastReceiver.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'java/src/com/android/inputmethod/latin/SystemBroadcastReceiver.java') diff --git a/java/src/com/android/inputmethod/latin/SystemBroadcastReceiver.java b/java/src/com/android/inputmethod/latin/SystemBroadcastReceiver.java index 0d081e0d2..a093ec6db 100644 --- a/java/src/com/android/inputmethod/latin/SystemBroadcastReceiver.java +++ b/java/src/com/android/inputmethod/latin/SystemBroadcastReceiver.java @@ -109,7 +109,7 @@ public final class SystemBroadcastReceiver extends BroadcastReceiver { context.sendBroadcast(updateIntent); } - private static void toggleAppIcon(final Context context) { + public static void toggleAppIcon(final Context context) { final int appInfoFlags = context.getApplicationInfo().flags; final boolean isSystemApp = (appInfoFlags & ApplicationInfo.FLAG_SYSTEM) > 0; if (Log.isLoggable(TAG, Log.INFO)) { -- cgit v1.2.3-83-g751a