diff options
author | Dianne Hackborn <hackbod@google.com> | 2011-09-13 13:26:38 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2011-09-13 13:26:38 -0700 |
commit | f809870f118663055dc0f8b626204e7bb1133fb5 (patch) | |
tree | 3add0264f801b227698fb61db348f1a939ecdead /services | |
parent | 7a685e89114ddfe35f87075dfe66a480c91c9de2 (diff) | |
download | frameworks_base-f809870f118663055dc0f8b626204e7bb1133fb5.zip frameworks_base-f809870f118663055dc0f8b626204e7bb1133fb5.tar.gz frameworks_base-f809870f118663055dc0f8b626204e7bb1133fb5.tar.bz2 |
Fix issue #4280324: Returning to Fullscreen Layout with WebView...
...Leads to Shifted Layout
Change-Id: I6cf3fd0dd066f73cd1ec6fce3d994f7e3eead293
Diffstat (limited to 'services')
-rw-r--r-- | services/java/com/android/server/wm/WindowState.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/services/java/com/android/server/wm/WindowState.java b/services/java/com/android/server/wm/WindowState.java index bb36d3a..0ee3f17 100644 --- a/services/java/com/android/server/wm/WindowState.java +++ b/services/java/com/android/server/wm/WindowState.java @@ -968,6 +968,7 @@ final class WindowState implements WindowManagerPolicy.WindowState { + mPolicyVisibilityAfterAnim); } mPolicyVisibility = mPolicyVisibilityAfterAnim; + mService.mLayoutNeeded = true; if (!mPolicyVisibility) { if (mService.mCurrentFocus == this) { mService.mFocusMayChange = true; |