We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b681aa commit 90a71a6Copy full SHA for 90a71a6
1 file changed
src/vs/base/browser/ui/splitview/panelview.ts
@@ -136,7 +136,9 @@ export abstract class Panel implements IView {
136
this._onDidChange.fire(expanded ? this.expandedSize : undefined);
137
138
if (expanded) {
139
- clearTimeout(this.animationTimer);
+ if (typeof this.animationTimer === 'number') {
140
+ clearTimeout(this.animationTimer);
141
+ }
142
append(this.element, this.body);
143
} else {
144
this.animationTimer = window.setTimeout(() => {
0 commit comments