mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-19 05:09:17 +01:00
Fix round text icons (closes #2934)
This commit is contained in:
parent
55101b1a4a
commit
2b27b40142
@ -93,7 +93,7 @@ fun ImageView.roundTextIcon(text: String) {
|
|||||||
val letter = text.take(1).toUpperCase()
|
val letter = text.take(1).toUpperCase()
|
||||||
val size = min(this.width, this.height)
|
val size = min(this.width, this.height)
|
||||||
|
|
||||||
TextDrawable(
|
setImageDrawable(TextDrawable(
|
||||||
shape = TextDrawable.DRAWABLE_SHAPE_OVAL,
|
shape = TextDrawable.DRAWABLE_SHAPE_OVAL,
|
||||||
desiredWidth = size,
|
desiredWidth = size,
|
||||||
desiredHeight = size,
|
desiredHeight = size,
|
||||||
@ -101,7 +101,7 @@ fun ImageView.roundTextIcon(text: String) {
|
|||||||
textColor = Color.WHITE,
|
textColor = Color.WHITE,
|
||||||
text = letter,
|
text = letter,
|
||||||
color = ColorGenerator.MATERIAL.getColor(letter)
|
color = ColorGenerator.MATERIAL.getColor(letter)
|
||||||
)
|
))
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user