mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-16 18:09:16 +01:00
Fix issue with center zoom position
This commit is contained in:
parent
030071e659
commit
d79e141fe5
@ -314,7 +314,7 @@ class PagerPageHolder(
|
|||||||
when (config.imageZoomType) {
|
when (config.imageZoomType) {
|
||||||
ZoomType.Left -> setScaleAndCenter(scale, PointF(0f, 0f))
|
ZoomType.Left -> setScaleAndCenter(scale, PointF(0f, 0f))
|
||||||
ZoomType.Right -> setScaleAndCenter(scale, PointF(sWidth.toFloat(), 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()
|
onImageDecoded()
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user