about summary refs log tree commit diff
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2019-02-09 22:32:09 +0100
committerThibG <thib@sitedethib.com>2019-02-10 22:54:25 +0100
commit7c0728c7764e1e851eb0174b37767029c1061f2d (patch)
tree7bd79861587506866fa2b5b0e52fd0b68c1b3648
parentdfe1d548a58154c988b98cab313496292bdc62e2 (diff)
Minor fix to timeline jump avoiding behavior
-rw-r--r--app/javascript/flavours/glitch/components/scrollable_list.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/components/scrollable_list.js b/app/javascript/flavours/glitch/components/scrollable_list.js
index 2e7c9fd6e..462185bbc 100644
--- a/app/javascript/flavours/glitch/components/scrollable_list.js
+++ b/app/javascript/flavours/glitch/components/scrollable_list.js
@@ -129,7 +129,7 @@ export default class ScrollableList extends PureComponent {
   }
 
   getScrollPosition = () => {
-    if (this.node && this.node.scrollTop > 0) {
+    if (this.node && (this.node.scrollTop > 0 || this.mouseMovedRecently)) {
       return {height: this.node.scrollHeight, top: this.node.scrollTop};
     } else {
       return null;