Change zoom from 3x to 5x (#6164)

Because some people actually read images with really small text

*I hope they have some extreme high quality pictures else I don't know how they read the raster images*

(cherry picked from commit 8f00d34b0b3a5dc30f12ff5a22fd242ade84defe)
This commit is contained in:
Andreas 2021-10-28 05:33:36 +02:00 committed by Jobobby04
parent 95bca82355
commit 29a24fa047

View File

@ -141,7 +141,7 @@ open class ReaderPageImageView @JvmOverloads constructor(
setOnImageEventListener(
object : SubsamplingScaleImageView.DefaultOnImageEventListener() {
override fun onReady() {
// 3x zoom
// 5x zoom
maxScale = scale * MAX_ZOOM_SCALE
setDoubleTapZoomScale(scale * 2)
@ -261,4 +261,4 @@ open class ReaderPageImageView @JvmOverloads constructor(
}
}
private const val MAX_ZOOM_SCALE = 3F
private const val MAX_ZOOM_SCALE = 5F