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

Commit b1c33a5d authored by Vadim Tryshev's avatar Vadim Tryshev Committed by Android (Google) Code Review
Browse files

Merge "Fixing Clear-all crawling down with time" into ub-launcher3-edmonton

parents d837a329 5b87fa6a
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
package com.android.quickstep.views;

import static com.android.quickstep.views.RecentsView.DEBUG_SHOW_CLEAR_ALL_BUTTON;

import android.content.Context;
import android.graphics.Rect;
import android.util.AttributeSet;
@@ -50,6 +52,8 @@ public class RecentsViewContainer extends InsettableFrameLayout {
    protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
        super.onLayout(changed, left, top, right, bottom);

        if (!changed || !DEBUG_SHOW_CLEAR_ALL_BUTTON) return;

        mRecentsView.getTaskSize(mTempRect);

        mClearAllButton.setTranslationX(
@@ -57,7 +61,7 @@ public class RecentsViewContainer extends InsettableFrameLayout {
                        R.dimen.clear_all_container_width)) / 2);
        mClearAllButton.setTranslationY(
                mTempRect.top + (mTempRect.height() - mClearAllButton.getMeasuredHeight()) / 2
                        - mClearAllButton.getY());
                        - mClearAllButton.getTop());
    }

    @Override