Always report window move to client
ag/1037916 added logic to only report window movement to the client if the window doesn't have a task or its stack is bounds animating. This causes problems on the client side for window that don't fall into this category as they will have the wrong information of where they are no screen. Bug: 29093176 Change-Id: I958174af430f2c4003a1c0a74956964d209c0e4a
This commit is contained in:
@@ -731,9 +731,7 @@ class WindowSurfacePlacer {
|
||||
}
|
||||
|
||||
try {
|
||||
if (task == null || task.mStack.getBoundsAnimating()) {
|
||||
w.mClient.moved(left, top);
|
||||
}
|
||||
w.mClient.moved(left, top);
|
||||
} catch (RemoteException e) {
|
||||
}
|
||||
w.mMovedByResize = false;
|
||||
|
||||
Reference in New Issue
Block a user