Keep persistent Taskbar visible over Taskbar All Apps.
Additionally, this CL fixes some touchable insets issues with the overlay window. Dragging and dropping is now reliable from taskbar while All Apps or EDU is also open. Change-Id: Ia612c1b5266a8fb2b7005a773fbd2b00ec4824db Bug: 279465803 Bug: 275890048 Bug: 264463659 Flag: PERSISTENT_TASKBAR_OVER_TASKBAR_ALL_APPS (Teamfood) Test: Taskbar is functional over All Apps and EDU.
This commit is contained in:
@@ -100,9 +100,13 @@ public final class TaskbarAllAppsController {
|
||||
}
|
||||
}
|
||||
|
||||
/** Opens the {@link TaskbarAllAppsContainerView} in a new window. */
|
||||
public void show() {
|
||||
show(true);
|
||||
/** Toggles visibility of {@link TaskbarAllAppsContainerView} in the overlay window. */
|
||||
public void toggle() {
|
||||
if (isOpen()) {
|
||||
mSlideInView.close(true);
|
||||
} else {
|
||||
show(true);
|
||||
}
|
||||
}
|
||||
|
||||
/** Returns {@code true} if All Apps is open. */
|
||||
|
||||
Reference in New Issue
Block a user