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

Commit 242b9c4e authored by Alan Viverette's avatar Alan Viverette Committed by Android (Google) Code Review
Browse files

Merge "Fix row/column order when unparcelling CollectionItemInfo" into mnc-dev

parents e3e314df faeac960
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2737,10 +2737,10 @@ public class AccessibilityNodeInfo implements Parcelable {

        if (mCollectionItemInfo != null) {
            parcel.writeInt(1);
            parcel.writeInt(mCollectionItemInfo.getColumnIndex());
            parcel.writeInt(mCollectionItemInfo.getColumnSpan());
            parcel.writeInt(mCollectionItemInfo.getRowIndex());
            parcel.writeInt(mCollectionItemInfo.getRowSpan());
            parcel.writeInt(mCollectionItemInfo.getColumnIndex());
            parcel.writeInt(mCollectionItemInfo.getColumnSpan());
            parcel.writeInt(mCollectionItemInfo.isHeading() ? 1 : 0);
            parcel.writeInt(mCollectionItemInfo.isSelected() ? 1 : 0);
        } else {