Loading services/core/java/com/android/server/wm/WindowState.java +2 −2 Original line number Diff line number Diff line Loading @@ -5014,7 +5014,7 @@ class WindowState extends WindowContainer<WindowState> implements WindowManagerP } @Override boolean isAnimating(int flags) { boolean isAnimating(int flags, int typesToCheck) { // If we are an inset provider, all our animations are driven by the inset client, so we // aren't really animating. Loading @@ -5022,7 +5022,7 @@ class WindowState extends WindowContainer<WindowState> implements WindowManagerP if (mControllableInsetProvider != null) { return false; } return super.isAnimating(flags); return super.isAnimating(flags, typesToCheck); } void startAnimation(Animation anim) { Loading Loading
services/core/java/com/android/server/wm/WindowState.java +2 −2 Original line number Diff line number Diff line Loading @@ -5014,7 +5014,7 @@ class WindowState extends WindowContainer<WindowState> implements WindowManagerP } @Override boolean isAnimating(int flags) { boolean isAnimating(int flags, int typesToCheck) { // If we are an inset provider, all our animations are driven by the inset client, so we // aren't really animating. Loading @@ -5022,7 +5022,7 @@ class WindowState extends WindowContainer<WindowState> implements WindowManagerP if (mControllableInsetProvider != null) { return false; } return super.isAnimating(flags); return super.isAnimating(flags, typesToCheck); } void startAnimation(Animation anim) { Loading