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

Commit 41134f38 authored by Matthew Ng's avatar Matthew Ng Committed by android-build-merger
Browse files

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

am: ddd54580

Change-Id: I0f4c67f4c960037adc6b222018b30614892a89df
parents 58dc4c8d ddd54580
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();
        }
    }