Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 91068127 authored by Winson Chung's avatar Winson Chung Committed by Android (Google) Code Review
Browse files

Merge "Re-enabling docking on left/right on tablets in landscape."

parents 164fa97a e92440ee
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -34,14 +34,16 @@ import com.android.systemui.recents.model.TaskStack;
 */
class DockRegion {
    public static TaskStack.DockState[] PHONE_LANDSCAPE = {
            // We only allow docking to the left for now on small devices
            TaskStack.DockState.LEFT
    };
    public static TaskStack.DockState[] PHONE_PORTRAIT = {
            // We only allow docking to the top for now
            // We only allow docking to the top for now on small devices
            TaskStack.DockState.TOP
    };
    public static TaskStack.DockState[] TABLET_LANDSCAPE = {
            TaskStack.DockState.LEFT
            TaskStack.DockState.LEFT,
            TaskStack.DockState.RIGHT
    };
    public static TaskStack.DockState[] TABLET_PORTRAIT = PHONE_PORTRAIT;
}