Fix toolbar menu being broken on transition (fixes #5135)

(cherry picked from commit 034506f56b96b7f01c2d27021236e55f0542c559)
This commit is contained in:
arkon 2021-05-29 13:39:39 -04:00 committed by Jobobby04
parent 674a9c5067
commit d5fcded898

View File

@ -29,8 +29,9 @@ class OneWayFadeChangeHandler : FadeChangeHandler {
} }
if (from != null && (!isPush || removesFromViewOnPush())) { if (from != null && (!isPush || removesFromViewOnPush())) {
container.removeView(from) from.alpha = 0f
} }
return animator return animator
} }