Skip to content

Commit ff339ec

Browse files
committed
Fix touchable heights
1 parent cb80d87 commit ff339ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ export class Slider extends PureComponent<SliderProps, SliderState> {
509509
);
510510
size.height = Math.max(
511511
0,
512-
thumbTouchSize?.height || 0 - containerSize.height,
512+
(thumbTouchSize?.height || 0) - containerSize.height,
513513
);
514514
}
515515

0 commit comments

Comments
 (0)