Loading services/core/java/com/android/server/wm/WindowManagerService.java +3 −1 Original line number Diff line number Diff line Loading @@ -1153,7 +1153,9 @@ public class WindowManagerService extends IWindowManager.Stub int i; for (i = windows.size() - 1; i >= 0; --i) { WindowState w = windows.get(i); if (w.mBaseLayer <= myLayer) { // Dock divider shares the base layer with application windows, but we want to always // keep it above the application windows. if (w.mBaseLayer <= myLayer && w.mAttrs.type != TYPE_DOCK_DIVIDER) { break; } } Loading Loading
services/core/java/com/android/server/wm/WindowManagerService.java +3 −1 Original line number Diff line number Diff line Loading @@ -1153,7 +1153,9 @@ public class WindowManagerService extends IWindowManager.Stub int i; for (i = windows.size() - 1; i >= 0; --i) { WindowState w = windows.get(i); if (w.mBaseLayer <= myLayer) { // Dock divider shares the base layer with application windows, but we want to always // keep it above the application windows. if (w.mBaseLayer <= myLayer && w.mAttrs.type != TYPE_DOCK_DIVIDER) { break; } } Loading