Merge pull request #2957 from faisalcodes/master

Fixes: icons not showing in the player menu options.
This commit is contained in:
Bnyro 2023-02-03 17:09:14 +01:00 committed by GitHub
commit 0e6b906a12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,5 +25,5 @@ fun TextView.setDrawables(
end: Drawable? = null,
bottom: Drawable? = null
) {
TextViewCompat.setCompoundDrawablesRelative(this, start, top, end, bottom)
TextViewCompat.setCompoundDrawablesRelativeWithIntrinsicBounds(this, start, top, end, bottom)
}