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

Commit ea476e46 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "Fix unnecssary traversal for starting windows" into rvc-dev am: 432e0c74

Change-Id: I55b2005d6bf47944255ce5f83f612ed915821375
parents 1d2446b8 432e0c74
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -793,8 +793,13 @@ public final class ViewRootImpl implements ViewParent,

    public void setOnContentApplyWindowInsetsListener(OnContentApplyWindowInsetsListener listener) {
        mAttachInfo.mContentOnApplyWindowInsetsListener = listener;

        // System windows will be fitted on first traversal, so no reason to request additional
        // (possibly getting executed after the first traversal).
        if (!mFirst) {
            requestFitSystemWindows();
        }
    }

    public void addWindowCallbacks(WindowCallbacks callback) {
        synchronized (mWindowCallbacks) {