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

Commit 432e0c74 authored by Jorim Jaggi's avatar Jorim Jaggi Committed by Android (Google) Code Review
Browse files

Merge "Fix unnecssary traversal for starting windows" into rvc-dev

parents a949a895 aa6235d8
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) {