mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2025-01-11 19:29:10 +01:00
Fixed crash when pressing up arrow in search activity
This commit is contained in:
parent
8da4b677ea
commit
6e99caf458
@ -542,9 +542,10 @@ class MangaDetailsController : BaseController,
|
||||
val colorSecondary = activity?.getResourceColor(
|
||||
R.attr.colorSecondary
|
||||
) ?: Color.BLACK
|
||||
if (router.backstack.last().controller() !is MangaDetailsController) {
|
||||
(activity as MainActivity).appbar.setBackgroundColor(colorSecondary)
|
||||
(activity as MainActivity).toolbar.setBackgroundColor(colorSecondary)
|
||||
if (router.backstackSize > 0 &&
|
||||
router.backstack.last().controller() !is MangaDetailsController) {
|
||||
(activity as? MainActivity)?.appbar?.setBackgroundColor(colorSecondary)
|
||||
(activity as? MainActivity)?.toolbar?.setBackgroundColor(colorSecondary)
|
||||
|
||||
activity?.window?.statusBarColor = activity?.getResourceColor(
|
||||
android.R.attr.statusBarColor
|
||||
|
Loading…
x
Reference in New Issue
Block a user