Skip to content

Commit 578c699

Browse files
committed
chore: Scroll blink opt
1 parent c3d63ee commit 578c699

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ScrollBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ export default class ScrollBar extends React.Component<ScrollBarProps, ScrollBar
178178
const { visible } = this.state;
179179
const { height, scrollHeight } = this.props;
180180

181-
if (height > scrollHeight) {
181+
if (height >= scrollHeight) {
182182
return false;
183183
}
184184

0 commit comments

Comments
 (0)