Skip to content

Commit

Permalink
[TextInputLayout] Fixed counter overflow text color getter
Browse files Browse the repository at this point in the history
Resolves #3002

GIT_ORIGIN_REV_ID=b9f8e26840e02df2529561cf464e347fe220065d
PiperOrigin-RevId: 478059617
  • Loading branch information
pubiqq authored and pekingme committed Oct 3, 2022
1 parent be8b8d4 commit e76eaff
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -2259,7 +2259,7 @@ public void setCounterOverflowTextColor(@Nullable ColorStateList counterOverflow
*/
@Nullable
public ColorStateList getCounterOverflowTextColor() {
return counterTextColor;
return counterOverflowTextColor;
}

/**
Expand Down

0 comments on commit e76eaff

Please sign in to comment.