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

Commit 30ad7203 authored by Adam Powell's avatar Adam Powell Committed by Gerrit Code Review
Browse files

Merge "Consider mScrollX when drawing the checkMarkDrawable"

parents 4b8cc94c 78cdc55f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -242,7 +242,7 @@ public class CheckedTextView extends TextView implements Checkable {
                right = width - mBasePadding;
                left = right - mCheckMarkWidth;
            }
            checkMarkDrawable.setBounds( left, top, right, bottom);
            checkMarkDrawable.setBounds(mScrollX + left, top, mScrollX + right, bottom);
            checkMarkDrawable.draw(canvas);
        }
    }