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

Commit ddd54580 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Do not set the divider pos during adjust ime and minimized interaction" into oc-dev

parents 6fb15ea9 f3589c7a
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -832,7 +832,10 @@ public class DividerView extends FrameLayout implements OnTouchListener,
                .setDuration(animDuration)
                .start();
        mAdjustedForIme = adjustedForIme;
        if (mHomeStackResizable && adjustedForIme) {

        // Only get new position if home stack is resizable, ime is open and not minimized
        // (including the animation)
        if (mHomeStackResizable && adjustedForIme && !mIsInMinimizeInteraction) {
            mDividerPositionBeforeMinimized = getCurrentPosition();
        }
    }