diff options
author | Nancy Chen <nancychen@google.com> | 2014-11-12 23:50:13 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-11-12 23:50:13 +0000 |
commit | ac2b5e9377123426ad9d5808586be866eb686f4e (patch) | |
tree | c44ebe1dfccbb5a522b45fca31affd52207d952a | |
parent | 3a13c56eca834717f1a5888551febc1d5e94390d (diff) | |
parent | a91c8003b84fa882dcf2b64fc21397419265ed25 (diff) |
am a91c8003: am 00f44af6: Merge "Use the highlight color instead of the tint color" into lmp-mr1-dev
* commit 'a91c8003b84fa882dcf2b64fc21397419265ed25':
Use the highlight color instead of the tint color
-rw-r--r-- | src/com/android/dialer/calllog/PhoneAccountUtils.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/dialer/calllog/PhoneAccountUtils.java b/src/com/android/dialer/calllog/PhoneAccountUtils.java index 4f85abf81..2eaf94937 100644 --- a/src/com/android/dialer/calllog/PhoneAccountUtils.java +++ b/src/com/android/dialer/calllog/PhoneAccountUtils.java @@ -73,7 +73,7 @@ public class PhoneAccountUtils { */ public static int getAccountColor(Context context, PhoneAccountHandle accountHandle) { PhoneAccount account = getAccountOrNull(context, accountHandle); - return account == null ? PhoneAccount.NO_COLOR : account.getIconTint(); + return account == null ? PhoneAccount.NO_COLOR : account.getHighlightColor(); } /** |