Increase scrollbackDebounce to 150

This commit is contained in:
Ken-Håvard Lieng 2018-11-22 09:51:26 +01:00
parent 8eb1f9cbb4
commit 09a1933131
2 changed files with 54 additions and 54 deletions

File diff suppressed because one or more lines are too long

View File

@ -10,7 +10,7 @@ const fetchThreshold = 600;
// The amount of time in ms that needs to pass without any
// scroll events happening before adding messages to the top,
// this is done to prevent the scroll from jumping all over the place
const scrollbackDebounce = 100;
const scrollbackDebounce = 150;
export default class MessageBox extends PureComponent {
list = createRef();