nope, do not use Glide for loading non-animating gifs

This commit is contained in:
tibbi 2018-01-04 18:40:44 +01:00
parent 129858119d
commit 1204eea382

View file

@ -148,7 +148,6 @@ fun Activity.loadImage(path: String, target: MySquareImageView, horizontalScroll
loadJpg(path, target, cropThumbnails) loadJpg(path, target, cropThumbnails)
} }
} else if (path.isGif()) { } else if (path.isGif()) {
if (animateGifs) {
try { try {
val gifDrawable = GifDrawable(path) val gifDrawable = GifDrawable(path)
target.setImageDrawable(gifDrawable) target.setImageDrawable(gifDrawable)
@ -164,9 +163,6 @@ fun Activity.loadImage(path: String, target: MySquareImageView, horizontalScroll
} catch (e: OutOfMemoryError) { } catch (e: OutOfMemoryError) {
loadJpg(path, target, cropThumbnails) loadJpg(path, target, cropThumbnails)
} }
} else {
loadJpg(path, target, cropThumbnails)
}
} }
} }