From d2f14b05f200bd75f2045a759fd1d34cc6a364a1 Mon Sep 17 00:00:00 2001 From: HapeLee <63206378+HapeLee@users.noreply.github.com> Date: Thu, 28 May 2026 18:54:29 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=20ExploreShowScreen=20?= =?UTF-8?q?=E5=8A=A0=E8=BD=BD=E6=97=B6=E5=87=BA=E7=8E=B0=E4=B8=A4=E4=B8=AA?= =?UTF-8?q?=E5=8A=A0=E8=BD=BD=E6=8C=87=E7=A4=BA=E5=99=A8=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/io/legado/app/ui/book/explore/ExploreShowScreen.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/io/legado/app/ui/book/explore/ExploreShowScreen.kt b/app/src/main/java/io/legado/app/ui/book/explore/ExploreShowScreen.kt index 89cadf4ac..7d94035d6 100644 --- a/app/src/main/java/io/legado/app/ui/book/explore/ExploreShowScreen.kt +++ b/app/src/main/java/io/legado/app/ui/book/explore/ExploreShowScreen.kt @@ -327,7 +327,7 @@ fun ExploreShowScreen( item(span = { GridItemSpan(maxLineSpan) }) { LoadMoreFooter( - isLoading = state.isLoading, + isLoading = state.isLoading && !state.isRefreshing, errorMsg = state.errorMsg, isEnd = state.isEnd, onRetry = { viewModel.onIntent(ExploreShowIntent.LoadMore) } @@ -377,7 +377,7 @@ fun ExploreShowScreen( item { LoadMoreFooter( - isLoading = state.isLoading, + isLoading = state.isLoading && !state.isRefreshing, errorMsg = state.errorMsg, isEnd = state.isEnd, onRetry = { viewModel.onIntent(ExploreShowIntent.LoadMore) }