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

Commit 4b878f53 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Follow up CL for controller navigation fix" into sc-v2-dev

parents f5c3dab5 b063294e
Loading
Loading
Loading
Loading
+2 −7
Original line number Diff line number Diff line
@@ -353,7 +353,7 @@ public abstract class PagedView<T extends View & PageIndicator> extends ViewGrou
        } else if (focus == View.FOCUS_RIGHT) {
            nextPage = currentPage + panelCount;
        } else {
            // no neighbours to those direction
            // no neighbours to other directions
            return new IntSet();
        }
        nextPage = validateNewPage(nextPage);
@@ -362,12 +362,7 @@ public abstract class PagedView<T extends View & PageIndicator> extends ViewGrou
            return new IntSet();
        }

        int pageCount = getPageCount();
        IntSet neighbourIndices = new IntSet();
        for (int page = nextPage; page < nextPage + panelCount && page < pageCount; page++) {
            neighbourIndices.add(page);
        }
        return neighbourIndices;
        return getPageIndices(nextPage);
    }

    /**