mirror of
https://github.com/tuskyapp/Tusky
synced 2025-01-20 20:38:34 +01:00
fix crash when captioning large images (#2149)
This commit is contained in:
parent
0e51953cd4
commit
076a2b248a
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user