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

Commit b88314ad authored by Alan Viverette's avatar Alan Viverette Committed by Android Git Automerger
Browse files

am 508b6d2d: am 242b9c4e: Merge "Fix row/column order when unparcelling...

am 508b6d2d: am 242b9c4e: Merge "Fix row/column order when unparcelling CollectionItemInfo" into mnc-dev

* commit '508b6d2d':
  Fix row/column order when unparcelling CollectionItemInfo
parents c96a66dd 508b6d2d
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 {