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

Commit 42658ed5 authored by Adam Powell's avatar Adam Powell Committed by Android Git Automerger
Browse files

am 30ad7203: Merge "Consider mScrollX when drawing the checkMarkDrawable"

* commit '30ad7203':
  Consider mScrollX when drawing the checkMarkDrawable
parents 59734490 30ad7203
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);
        }
    }