Fix progress loading indicator in RefreshScreen

This commit is contained in:
Shinokuni 2024-03-28 11:22:54 +01:00
parent 8b10864578
commit 51b7ba73fd
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ fun RefreshScreen(
) {
CenteredColumn {
LinearProgressIndicator(
progress = { (feedCount / feedMax).toFloat() }
progress = { feedCount.toFloat() / feedMax.toFloat() }
)
VeryShortSpacer()