Loading services/core/java/com/android/server/wm/RootWindowContainer.java +3 −2 Original line number Original line Diff line number Diff line Loading @@ -794,8 +794,9 @@ class RootWindowContainer extends WindowContainer<DisplayContent> private void handleResizingWindows() { private void handleResizingWindows() { for (int i = mWmService.mResizingWindows.size() - 1; i >= 0; i--) { for (int i = mWmService.mResizingWindows.size() - 1; i >= 0; i--) { WindowState win = mWmService.mResizingWindows.get(i); WindowState win = mWmService.mResizingWindows.get(i); if (win.mAppFreezing) { if (win.mAppFreezing || win.getDisplayContent().mWaitingForConfig) { // Don't remove this window until rotation has completed. // Don't remove this window until rotation has completed and is not waiting for the // complete configuration. continue; continue; } } win.reportResized(); win.reportResized(); Loading Loading
services/core/java/com/android/server/wm/RootWindowContainer.java +3 −2 Original line number Original line Diff line number Diff line Loading @@ -794,8 +794,9 @@ class RootWindowContainer extends WindowContainer<DisplayContent> private void handleResizingWindows() { private void handleResizingWindows() { for (int i = mWmService.mResizingWindows.size() - 1; i >= 0; i--) { for (int i = mWmService.mResizingWindows.size() - 1; i >= 0; i--) { WindowState win = mWmService.mResizingWindows.get(i); WindowState win = mWmService.mResizingWindows.get(i); if (win.mAppFreezing) { if (win.mAppFreezing || win.getDisplayContent().mWaitingForConfig) { // Don't remove this window until rotation has completed. // Don't remove this window until rotation has completed and is not waiting for the // complete configuration. continue; continue; } } win.reportResized(); win.reportResized(); Loading