Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c215f5ae authored by Johannes Gallmann's avatar Johannes Gallmann
Browse files

Fix no taskbar after predictive back-to-home interruption

Bug: 381527094
Test: Manual, i.e. verified that notifyHomeVisibilityChanged is always called after an interruption and that taskbar was always showing up in app
Flag: EXEMPT bugfix
Change-Id: Ib24911d6a9ba105b86f4afc9ad330b9c9ae1d561
parent 91edaf64
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -76,8 +76,8 @@ public class HomeTransitionObserver implements TransitionObserver,
                if (Flags.migratePredictiveBackTransition()) {
                    final boolean gestureToHomeTransition = isBackGesture
                            && TransitionUtil.isClosingType(info.getType());
                    if (gestureToHomeTransition
                            || (!isBackGesture && TransitionUtil.isOpenOrCloseMode(mode))) {
                    if (gestureToHomeTransition || TransitionUtil.isClosingMode(mode)
                            || (!isBackGesture && TransitionUtil.isOpeningMode(mode))) {
                        notifyHomeVisibilityChanged(gestureToHomeTransition
                                || TransitionUtil.isOpeningType(mode));
                    }