fix crash when captioning large images (#2149)

This commit is contained in:
Konrad Pozniak 2021-05-06 07:33:15 +02:00 committed by GitHub
parent 0e51953cd4
commit 076a2b248a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -101,8 +101,10 @@ fun <T> T.makeCaptionDialog(existingDescription: String?,
// size. Maybe we should limit the size of CustomTarget
Glide.with(this)
.load(previewUri)
.into(object : CustomTarget<Drawable>() {
override fun onLoadCleared(placeholder: Drawable?) {}
.into(object : CustomTarget<Drawable>(4096, 4096) {
override fun onLoadCleared(placeholder: Drawable?) {
imageView.setImageDrawable(placeholder)
}
override fun onResourceReady(resource: Drawable, transition: Transition<in Drawable>?) {
imageView.setImageDrawable(resource)