Skip to content

Commit

Permalink
fix(android): properly set ImageView tintColor (#11441)
Browse files Browse the repository at this point in the history
Fixes TIMOB-27721
  • Loading branch information
hansemannn authored and sgtcoolguy committed Apr 28, 2020
1 parent 8e8bcc6 commit f3e9507
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -493,7 +493,7 @@ public void setTintColor(String color)
if (this.tintColor == 0) {
imageView.clearColorFilter();
} else {
imageView.setColorFilter(this.tintColor, Mode.MULTIPLY);
imageView.setColorFilter(this.tintColor, Mode.SRC_ATOP);
}
}

Expand Down

0 comments on commit f3e9507

Please sign in to comment.