Show downloaded only banner in all views

This commit is contained in:
arkon
2020-10-03 10:48:53 -04:00
parent 4b78ff324d
commit 7194f65203
4 changed files with 23 additions and 22 deletions

View File

@ -193,10 +193,6 @@ class LibraryController(
}
}
if (preferences.downloadedOnly().get()) {
binding.downloadedOnly.isVisible = true
}
binding.btnGlobalSearch.clicks()
.onEach {
router.pushController(

View File

@ -165,6 +165,10 @@ class MainActivity : BaseActivity<MainActivityBinding>() {
preferences.extensionUpdatesCount()
.asImmediateFlow { setExtensionsBadge() }
.launchIn(scope)
preferences.downloadedOnly()
.asImmediateFlow { binding.downloadedOnly.isVisible = it }
.launchIn(scope)
}
override fun onNewIntent(intent: Intent) {