aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/views
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2019-03-31 22:51:32 -0400
committerAllan Wang <me@allanwang.ca>2019-03-31 22:51:32 -0400
commitfc375400411de3e7113a296b618940ef7b2b655c (patch)
tree9ae06938cb08c59b46c1002f20e8e0730cf2938e /app/src/main/kotlin/com/pitchedapps/frost/views
parent3a24b8dc01ca1f20c0803aefd48ae69e0b5c3e04 (diff)
downloadfrost-fc375400411de3e7113a296b618940ef7b2b655c.tar.gz
frost-fc375400411de3e7113a296b618940ef7b2b655c.tar.bz2
frost-fc375400411de3e7113a296b618940ef7b2b655c.zip
Remove round transformations
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/views')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/views/AccountItem.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/views/AccountItem.kt b/app/src/main/kotlin/com/pitchedapps/frost/views/AccountItem.kt
index d7a7de0e..d60ea7ed 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/views/AccountItem.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/views/AccountItem.kt
@@ -53,7 +53,7 @@ class AccountItem(val cookie: CookieModel?) : KauIItem<AccountItem, AccountItem.
if (cookie != null) {
text.text = cookie.name
GlideApp.with(itemView).load(profilePictureUrl(cookie.id))
- .transform(FrostGlide.roundCorner).listener(object : RequestListener<Drawable> {
+ .transform(FrostGlide.circleCrop).listener(object : RequestListener<Drawable> {
override fun onResourceReady(
resource: Drawable?,
model: Any?,