3
3
Fork 1
mirror of https://github.com/recloudstream/cloudstream.git synced 2024-08-15 01:53:11 +00:00
This commit is contained in:
Luna712 2024-07-18 10:54:04 -06:00 committed by GitHub
parent b5acdc406d
commit 42c14afccc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions
app/src/main/java/com/lagradost/cloudstream3/ui/download

View file

@ -78,7 +78,6 @@ class DownloadChildFragment : Fragment() {
activity?.onBackPressedDispatcher?.onBackPressed() // TODO FIX
return
}
fixPaddingStatusbar(binding?.downloadChildRoot)
binding?.downloadChildToolbar?.apply {
title = name
@ -155,6 +154,7 @@ class DownloadChildFragment : Fragment() {
}
context?.let { downloadsViewModel.updateChildList(it, folder) }
fixPaddingStatusbar(binding?.downloadChildRoot)
}
private fun handleSelectedChange(selected: MutableSet<Int>) {

View file

@ -217,6 +217,7 @@ class DownloadFragment : Fragment() {
handleScroll(scrollY - oldScrollY)
}
}
context?.let { downloadsViewModel.updateHeaderList(it) }
fixPaddingStatusbar(binding?.downloadRoot)
}