decrease the mininum tile dpi to 100 at fullscreen images

This commit is contained in:
tibbi 2016-11-15 19:31:57 +01:00
parent 54e5b0c9eb
commit 5592a040c3

View file

@ -40,7 +40,7 @@ class PhotoFragment : ViewPagerFragment(), View.OnClickListener {
orientation = SubsamplingScaleImageView.ORIENTATION_USE_EXIF orientation = SubsamplingScaleImageView.ORIENTATION_USE_EXIF
setImage(ImageSource.uri(medium.path)) setImage(ImageSource.uri(medium.path))
maxScale = 4f maxScale = 4f
setMinimumTileDpi(200) setMinimumTileDpi(100)
setOnClickListener(this@PhotoFragment) setOnClickListener(this@PhotoFragment)
} }
} }