am ac2b5e93: am a91c8003: am 00f44af6: Merge "Use the highlight color instead of the tint color" into lmp-mr1-dev
* commit 'ac2b5e9377123426ad9d5808586be866eb686f4e':
Use the highlight color instead of the tint color
diff --git a/src/com/android/dialer/calllog/PhoneAccountUtils.java b/src/com/android/dialer/calllog/PhoneAccountUtils.java
index 4f85abf..2eaf949 100644
--- a/src/com/android/dialer/calllog/PhoneAccountUtils.java
+++ b/src/com/android/dialer/calllog/PhoneAccountUtils.java
@@ -73,7 +73,7 @@
*/
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();
}
/**