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

Commit e0435a6c authored by Fabrice Di Meglio's avatar Fabrice Di Meglio Committed by Android (Google) Code Review
Browse files

Merge "Fix layout params resolution"

parents 3e09cc98 4a526885
Loading
Loading
Loading
Loading
+6 −7
Original line number Diff line number Diff line
@@ -13614,15 +13614,14 @@ public class View implements Drawable.Callback, Drawable.Callback2, KeyEvent.Cal
        mPrivateFlags |= FORCE_LAYOUT;
        mPrivateFlags |= INVALIDATED;
        if (mParent != null) {
        if (mLayoutParams != null) {
            mLayoutParams.onResolveLayoutDirection(getResolvedLayoutDirection());
        }
            if (!mParent.isLayoutRequested()) {
        if (mParent != null && !mParent.isLayoutRequested()) {
            mParent.requestLayout();
        }
    }
    }
    /**
     * Forces this view to be laid out during the next layout pass.