Merge "Fixes quick switch animation entering recents for low ram devices" into oc-mr1-dev

This commit is contained in:
TreeHugger Robot
2017-09-14 23:27:04 +00:00
committed by Android (Google) Code Review

View File

@@ -567,9 +567,11 @@ public class Recents extends SystemUI
@Override
public void appTransitionFinished() {
// Fallback, reset the flag once an app transition ends
EventBus.getDefault().send(new SetWaitingForTransitionStartEvent(
false /* waitingForTransitionStart */));
if (!Recents.getConfiguration().isLowRamDevice) {
// Fallback, reset the flag once an app transition ends
EventBus.getDefault().send(new SetWaitingForTransitionStartEvent(
false /* waitingForTransitionStart */));
}
}
/**