Commit 0ac8561b authored by Becky Zhou's avatar Becky Zhou Committed by Commit Bot

Fix wrong icon tint used for find toolbar

A small fix from CL
https://chromium-review.googlesource.com/c/chromium/src/+/1489416

Bug: 934525
Change-Id: Ied35119645b543678562248e2f4d533767b2ce41
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1504296Reviewed-by: default avatarTheresa <twellington@chromium.org>
Commit-Queue: Becky Zhou <huayinz@chromium.org>
Cr-Commit-Position: refs/heads/master@{#637881}
parent 0074ed2b
...@@ -89,7 +89,7 @@ public class ColorUtils { ...@@ -89,7 +89,7 @@ public class ColorUtils {
* @return The {@link ColorRes} for the icon tint. * @return The {@link ColorRes} for the icon tint.
*/ */
public static @ColorRes int getIconTintRes(boolean useLight) { public static @ColorRes int getIconTintRes(boolean useLight) {
return useLight ? R.color.standard_mode_tint : R.color.tint_on_dark_bg; return useLight ? R.color.tint_on_dark_bg : R.color.standard_mode_tint;
} }
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment