Albirew/tachiyomi
Archivé
1
0
Bifurcation 0

Fix issue with center zoom position

Cette révision appartient à :
inorichi 2018-11-17 16:23:03 +01:00
Parent 030071e659
révision d79e141fe5

Voir le fichier

@ -314,7 +314,7 @@ class PagerPageHolder(
when (config.imageZoomType) {
ZoomType.Left -> setScaleAndCenter(scale, PointF(0f, 0f))
ZoomType.Right -> setScaleAndCenter(scale, PointF(sWidth.toFloat(), 0f))
ZoomType.Center -> setScaleAndCenter(scale, center.apply { y = 0f })
ZoomType.Center -> setScaleAndCenter(scale, center.also { it?.y = 0f })
}
onImageDecoded()
}