diff options
author | Nancy Chen <nancychen@google.com> | 2014-11-12 19:59:03 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-11-12 19:59:03 +0000 |
commit | 00f44af6f5d4fc38060deddad5796315fb6a83fc (patch) | |
tree | 0cce821db392086fef9a2e5f3699531dd46f3bf4 /src | |
parent | afb64682dabf7b40d7bd4dc8cbd90b347ced1b14 (diff) | |
parent | 0e82fca41425c474499548de72acbc77a7fd2f66 (diff) |
Merge "Use the highlight color instead of the tint color" into lmp-mr1-dev
Diffstat (limited to 'src')
-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(); } /** |