Albirew/tachiyomi
Archivé
1
0
Bifurcation 0

Avoid some crashes

Cette révision appartient à :
arkon 2022-04-14 18:28:16 -04:00
Parent f16fb4e1e4
révision c1976ef599
2 fichiers modifiés avec 2 ajouts et 2 suppressions

Voir le fichier

@ -36,7 +36,7 @@ data class DownloadHeaderItem(
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (other is DownloadHeaderItem) {
return name == other.name
return id == other.id && name == other.name
}
return false
}

Voir le fichier

@ -110,7 +110,7 @@ open class ReaderPageImageView @JvmOverloads constructor(
private fun SubsamplingScaleImageView.landscapeZoom(forward: Boolean) {
if (config != null && config!!.landscapeZoom && config!!.minimumScaleType == SCALE_TYPE_CENTER_INSIDE && sWidth > sHeight && scale == minScale) {
handler.postDelayed({
handler?.postDelayed({
val point = when (config!!.zoomStartPosition) {
ZoomStartPosition.LEFT -> if (forward) PointF(0F, 0F) else PointF(sWidth.toFloat(), 0F)
ZoomStartPosition.RIGHT -> if (forward) PointF(sWidth.toFloat(), 0F) else PointF(0F, 0F)