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

Commit 9c295482 authored by Adam Cohen's avatar Adam Cohen
Browse files

Fixing issue #3200503

-StackView was using the wrong view to draw the click feedback

Change-Id: Ibb0a24af2d740fd1e3f6a6345518d730b66673f4
parent dd4e4603
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -325,7 +325,7 @@ public class StackView extends AdapterViewAnimator {

    void updateClickFeedback() {
        if (!mClickFeedbackIsValid) {
            View v = getViewAtRelativeIndex(0);
            View v = getViewAtRelativeIndex(1);
            if (v != null) {
                mClickFeedback.setImageBitmap(sHolographicHelper.createOutline(v,
                        HolographicHelper.CLICK_FEEDBACK));