OSDN Git Service

Fix refactoring typo
authorJorim Jaggi <jjaggi@google.com>
Wed, 17 May 2017 23:53:56 +0000 (01:53 +0200)
committerJorim Jaggi <jjaggi@google.com>
Wed, 17 May 2017 23:53:56 +0000 (01:53 +0200)
Seems like when we renamed/rearranged the methods we didn't ignore
mPolicyVisibility..and that's the most important part!

Fixes a bug where the dock divider isn't animating when unlocking
the phone.

Bug: 36200726
Change-Id: I4c5e9ca7f1b6e7bf21f793e1cf39d92fe77489e8

services/core/java/com/android/server/wm/WindowState.java

index 344c616..0266bf6 100644 (file)
@@ -1306,7 +1306,7 @@ class WindowState extends WindowContainer<WindowState> implements WindowManagerP
      *         otherwise.
      */
     boolean wouldBeVisibleIfPolicyIgnored() {
-        return mHasSurface && mPolicyVisibility && !isParentWindowHidden()
+        return mHasSurface && !isParentWindowHidden()
                 && !mAnimatingExit && !mDestroying && (!mIsWallpaper || mWallpaperVisible);
     }