aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/views/AccountItem.kt
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2019-03-31 23:04:24 -0400
committerGitHub <noreply@github.com>2019-03-31 23:04:24 -0400
commitf6ffcb6eb67ad9fc82b9929200f75a43cecf99db (patch)
tree9ae06938cb08c59b46c1002f20e8e0730cf2938e /app/src/main/kotlin/com/pitchedapps/frost/views/AccountItem.kt
parenta85b52302d1328798c7d844ff68117c49586873d (diff)
parentfc375400411de3e7113a296b618940ef7b2b655c (diff)
downloadfrost-f6ffcb6eb67ad9fc82b9929200f75a43cecf99db.tar.gz
frost-f6ffcb6eb67ad9fc82b9929200f75a43cecf99db.tar.bz2
frost-f6ffcb6eb67ad9fc82b9929200f75a43cecf99db.zip
Merge pull request #1379 from AllanWang/remove-round-icon
Remove round icon settings
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/views/AccountItem.kt')
-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?,