diff --git a/app/src/main/java/com/github/libretube/ui/extensions/SetDrawables.kt b/app/src/main/java/com/github/libretube/ui/extensions/SetDrawables.kt index d0cc80194..d62fd6ad1 100644 --- a/app/src/main/java/com/github/libretube/ui/extensions/SetDrawables.kt +++ b/app/src/main/java/com/github/libretube/ui/extensions/SetDrawables.kt @@ -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) }