Fix round text icons (closes #2934)

This commit is contained in:
arkon 2020-04-22 22:30:40 -04:00
parent 55101b1a4a
commit 2b27b40142

View File

@ -93,7 +93,7 @@ fun ImageView.roundTextIcon(text: String) {
val letter = text.take(1).toUpperCase()
val size = min(this.width, this.height)
TextDrawable(
setImageDrawable(TextDrawable(
shape = TextDrawable.DRAWABLE_SHAPE_OVAL,
desiredWidth = size,
desiredHeight = size,
@ -101,7 +101,7 @@ fun ImageView.roundTextIcon(text: String) {
textColor = Color.WHITE,
text = letter,
color = ColorGenerator.MATERIAL.getColor(letter)
)
))
}
/**