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

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

Merge "Reduces Assist Handle fade out duration" into qt-dev

parents 0963cc24 4f706c22
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -64,6 +64,7 @@ import android.view.ViewGroup;
import android.view.ViewGroup.LayoutParams;
import android.view.ViewTreeObserver;
import android.view.WindowManager;
import android.view.animation.AccelerateInterpolator;
import android.view.animation.Interpolator;
import android.view.animation.PathInterpolator;
import android.widget.FrameLayout;
@@ -231,7 +232,10 @@ public class ScreenDecorations extends SystemUI implements Tunable,
            anim.start();
        } else {
            view.animate().cancel();
            view.animate().setDuration(400).alpha(0f);
            view.animate()
                    .setInterpolator(new AccelerateInterpolator(1.5f))
                    .setDuration(250)
                    .alpha(0f);
        }

    }