Skip to content

Commit

Permalink
Bug fix icon color
Browse files Browse the repository at this point in the history
  • Loading branch information
zirouan committed Mar 18, 2018
1 parent e110091 commit ddf62b0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ private void setColorIcon(int colorIcon) {
}

private int getColorIconArrow() {
return mColorIconArrow;
return ContextCompat.getColor(mContext, mColorIconArrow);
}

private void setColorIconArrow(int color) {
Expand All @@ -569,7 +569,7 @@ private void setColorIconArrow(int color) {
}

private int getColorIconVoice() {
return mColorIconVoice;
return ContextCompat.getColor(mContext, mColorIconVoice);
}

private void setColorIconVoice(int color) {
Expand All @@ -578,7 +578,7 @@ private void setColorIconVoice(int color) {
}

private int getColorIconClose() {
return mColorIconClose;
return ContextCompat.getColor(mContext, mColorIconClose);
}

private void setColorIconClose(int color) {
Expand Down

0 comments on commit ddf62b0

Please sign in to comment.