Browse Source

Only consider mouse move in scrolling on item insertion (#9262)

Fixes #9259
pull/4/head
Les Orchard 5 years ago
committed by Eugen Rochko
parent
commit
cc1f13dfd0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/javascript/mastodon/components/scrollable_list.js

+ 1
- 1
app/javascript/mastodon/components/scrollable_list.js View File

@ -136,7 +136,7 @@ export default class ScrollableList extends PureComponent {
React.Children.count(prevProps.children) < React.Children.count(this.props.children) &&
this.getFirstChildKey(prevProps) !== this.getFirstChildKey(this.props);
if ((someItemInserted && this.node.scrollTop > 0) || this.mouseMovedRecently) {
if (someItemInserted && (this.node.scrollTop > 0 || this.mouseMovedRecently)) {
return this.node.scrollHeight - this.node.scrollTop;
} else {
return null;

Loading…
Cancel
Save