[Glitch] Only consider mouse move in scrolling on item insertion

Port 4e067b1bd0 to glitch-soc
lolsob-rspec
Thibaut Girka 2019-01-08 21:29:49 +01:00 committed by ThibG
parent 069657286f
commit ba82ff7c12
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ export default class ScrollableList extends PureComponent {
const someItemInserted = React.Children.count(prevProps.children) > 0 &&
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;