Explorar el Código

Prevent view from being removed if a to is found (#5135) (#5152)

Introduced in c68e7c8da78309a0b091c11379a8da5c6222572d
Antoine Gaudreau Simard hace 3 años
padre
commit
974275a429

+ 4 - 3
app/src/main/java/eu/kanade/tachiyomi/ui/base/controller/OneWayFadeChangeHandler.kt

@@ -31,11 +31,12 @@ class OneWayFadeChangeHandler : FadeChangeHandler {
         if (to != null) {
             val start: Float = if (toAddedToContainer) 0F else to.alpha
             animator.play(ObjectAnimator.ofFloat(to, View.ALPHA, start, 1f))
+        } else {
+            if (from != null && (!isPush || removesFromViewOnPush())) {
+                container.removeView(from)
+            }
         }
 
-        if (from != null && (!isPush || removesFromViewOnPush())) {
-            container.removeView(from)
-        }
         return animator
     }