Explorar el Código

Fix cancellation of scroll to the right (#4978)

master
abcang hace 6 años
committed by Eugen Rochko
padre
commit
44245926f1
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      app/javascript/mastodon/features/ui/components/columns_area.js

+ 1
- 1
app/javascript/mastodon/features/ui/components/columns_area.js Ver fichero

@@ -78,7 +78,7 @@ export default class ColumnsArea extends ImmutablePureComponent {

handleChildrenContentChange() {
if (!this.props.singleColumn) {
scrollRight(this.node, this.node.scrollWidth - window.innerWidth);
this._interruptScrollAnimation = scrollRight(this.node, this.node.scrollWidth - window.innerWidth);
}
}



Cargando…
Cancelar
Guardar