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

Commit 4a8eebde authored by Johannes Gallmann's avatar Johannes Gallmann Committed by Android (Google) Code Review
Browse files

Merge "Fix sysui studio build" into main

parents 19449f00 e8ff06ba
Loading
Loading
Loading
Loading
+2 −4
Original line number Original line Diff line number Diff line
@@ -417,10 +417,8 @@ public class DesktopModeVisualIndicator {
    private List<Pair<Rect, IndicatorType>> initSmallTabletRegions(DisplayLayout layout,
    private List<Pair<Rect, IndicatorType>> initSmallTabletRegions(DisplayLayout layout,
            boolean isLeftRightSplit) {
            boolean isLeftRightSplit) {
        return switch (mDragStartState) {
        return switch (mDragStartState) {
            case DragStartState.FROM_FULLSCREEN -> initSmallTabletRegionsFromFullscreen(layout,
            case FROM_FULLSCREEN -> initSmallTabletRegionsFromFullscreen(layout, isLeftRightSplit);
                    isLeftRightSplit);
            case FROM_SPLIT -> initSmallTabletRegionsFromSplit(layout, isLeftRightSplit);
            case DragStartState.FROM_SPLIT -> initSmallTabletRegionsFromSplit(layout,
                    isLeftRightSplit);
            default -> Collections.emptyList();
            default -> Collections.emptyList();
        };
        };
    }
    }