Browse Source

MangaController: Fix listeners cancelled when pushing new controller within (#5883)

Ivan Iskandar 3 năm trước cách đây
mục cha
commit
f41bde5ee1

+ 1 - 1
app/src/main/java/eu/kanade/tachiyomi/ui/manga/MangaController.kt

@@ -195,7 +195,7 @@ class MangaController :
         // Hide toolbar title on enter
         if (type.isEnter) {
             updateToolbarTitleAlpha()
-        } else {
+        } else if (!type.isPush) {
             // Cancel listeners early
             viewScope.cancel()
             updateToolbarTitleAlpha(1F)