summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNancy Chen <nancychen@google.com>2014-11-12 22:35:22 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-11-12 22:35:22 +0000
commita91c8003b84fa882dcf2b64fc21397419265ed25 (patch)
tree802a673275133ec089b9ff43c9690bc0dbd541d4
parentc599b6f4ef7b4f53d1f98acdb5bf24e6d7085110 (diff)
parent00f44af6f5d4fc38060deddad5796315fb6a83fc (diff)
am 00f44af6: Merge "Use the highlight color instead of the tint color" into lmp-mr1-dev
* commit '00f44af6f5d4fc38060deddad5796315fb6a83fc': Use the highlight color instead of the tint color
-rw-r--r--src/com/android/dialer/calllog/PhoneAccountUtils.java2
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();
}
/**