소스 검색

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

Make sure the loading view is hidden before updating the offset.
Ivan Iskandar 3 년 전
부모
커밋
18b5250ed1
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      app/src/main/java/eu/kanade/tachiyomi/ui/manga/MangaController.kt

+ 2 - 0
app/src/main/java/eu/kanade/tachiyomi/ui/manga/MangaController.kt

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