From 5592a040c3c0f9a86e7a63d3511a745ce9c09775 Mon Sep 17 00:00:00 2001 From: tibbi Date: Tue, 15 Nov 2016 19:31:57 +0100 Subject: [PATCH] decrease the mininum tile dpi to 100 at fullscreen images --- .../com/simplemobiletools/gallery/fragments/PhotoFragment.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/fragments/PhotoFragment.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/fragments/PhotoFragment.kt index 186bb1a9f..db6c9fd27 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/fragments/PhotoFragment.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/fragments/PhotoFragment.kt @@ -40,7 +40,7 @@ class PhotoFragment : ViewPagerFragment(), View.OnClickListener { orientation = SubsamplingScaleImageView.ORIENTATION_USE_EXIF setImage(ImageSource.uri(medium.path)) maxScale = 4f - setMinimumTileDpi(200) + setMinimumTileDpi(100) setOnClickListener(this@PhotoFragment) } }