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

Commit 4975e622 authored by Android Build Merger (Role)'s avatar Android Build Merger (Role) Committed by Android (Google) Code Review
Browse files

Merge "Merge "Merge "Fix bug where RemoteViews addView is backwards." into...

Merge "Merge "Merge "Fix bug where RemoteViews addView is backwards." into oc-dr1-dev am: 25c84b33" into oc-dr1-dev-plus-aosp am: 7730f5ad"
parents c3520b39 10fccb04
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1578,12 +1578,14 @@ public class RemoteViews implements Parcelable, Filter {
        ViewGroupActionAdd(Parcel parcel, BitmapCache bitmapCache, ApplicationInfo info,
                int depth) {
            viewId = parcel.readInt();
            mIndex = parcel.readInt();
            mNestedViews = new RemoteViews(parcel, bitmapCache, info, depth);
        }

        public void writeToParcel(Parcel dest, int flags) {
            dest.writeInt(VIEW_GROUP_ACTION_ADD_TAG);
            dest.writeInt(viewId);
            dest.writeInt(mIndex);
            mNestedViews.writeToParcel(dest, flags);
        }