Fix MangaController's loading view initial position (#5827)

Make sure the loading view is hidden before updating the offset.

(cherry picked from commit 18b5250ed1067423f2c4bb0955f14350697afc5b)
This commit is contained in:
Ivan Iskandar 2021-09-01 04:49:57 +07:00 committed by Jobobby04
parent 15cd238223
commit 7da6af5138

View File

@ -356,7 +356,9 @@ class MangaController :
val topStatusBarInset = WindowInsetsCompat.toWindowInsetsCompat(windowInsets)
.getInsets(WindowInsetsCompat.Type.statusBars())
.top
swipeRefresh.isRefreshing = false
swipeRefresh.setProgressViewEndTarget(false, getMainAppBarHeight() + topStatusBarInset)
updateRefreshing()
windowInsets
}
}