am d7cd29da: Add facility to run setup wizard after an update.
Merge commit 'd7cd29da91ccc0aba1f1097e19366f9ca36c7ce1' * commit 'd7cd29da91ccc0aba1f1097e19366f9ca36c7ce1': Add facility to run setup wizard after an update.
This commit is contained in:
committed by
The Android Open Source Project
commit
5d16cd0462
@@ -2332,6 +2332,14 @@ public class WindowManagerService extends IWindowManager.Stub implements Watchdo
|
||||
if (!mDisplayFrozen) {
|
||||
if (mNextAppTransition == WindowManagerPolicy.TRANSIT_NONE) {
|
||||
mNextAppTransition = transit;
|
||||
} else if (transit == WindowManagerPolicy.TRANSIT_TASK_OPEN
|
||||
&& mNextAppTransition == WindowManagerPolicy.TRANSIT_TASK_CLOSE) {
|
||||
// Opening a new task always supersedes a close for the anim.
|
||||
mNextAppTransition = transit;
|
||||
} else if (transit == WindowManagerPolicy.TRANSIT_ACTIVITY_OPEN
|
||||
&& mNextAppTransition == WindowManagerPolicy.TRANSIT_ACTIVITY_CLOSE) {
|
||||
// Opening a new activity always supersedes a close for the anim.
|
||||
mNextAppTransition = transit;
|
||||
}
|
||||
mAppTransitionReady = false;
|
||||
mAppTransitionTimeout = false;
|
||||
|
||||
Reference in New Issue
Block a user