Просмотр исходного кода

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

Make sure the loading view is hidden before updating the offset.
Ivan Iskandar 3 лет назад
Родитель
Сommit
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
                 }
             }