Skip to content

Commit 889a391

Browse files
committed
[Slider] Change BaseSlider onLayout override from public to protected to match super
PiperOrigin-RevId: 888137821
1 parent 803a060 commit 889a391

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/java/com/google/android/material/slider/BaseSlider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3248,7 +3248,7 @@ private boolean shouldDrawCompatHalo() {
32483248
}
32493249

32503250
@Override
3251-
public void onLayout(boolean changed, int left, int top, int right, int bottom) {
3251+
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
32523252
super.onLayout(changed, left, top, right, bottom);
32533253

32543254
viewRect.left = 0;

0 commit comments

Comments
 (0)