提交 a50d2ae3 编写于 作者: A Alex Dima

Fixes #33145: Cannot set property 'animationFrameDisposable' of null

上级 5bd01c92
......@@ -285,6 +285,9 @@ export class Scrollable extends Disposable {
// Begin smooth scrolling animation
this._smoothScrolling.animationFrameDisposable = this._scheduleAtNextAnimationFrame(() => {
if (!this._smoothScrolling) {
return;
}
this._smoothScrolling.animationFrameDisposable = null;
this._performSmoothScrolling();
});
......@@ -304,6 +307,9 @@ export class Scrollable extends Disposable {
// Continue smooth scrolling animation
this._smoothScrolling.animationFrameDisposable = this._scheduleAtNextAnimationFrame(() => {
if (!this._smoothScrolling) {
return;
}
this._smoothScrolling.animationFrameDisposable = null;
this._performSmoothScrolling();
});
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册