Skip to content

Commit aeaf5c5

Browse files
committed
Re-enable the inspector aftershow event
1 parent d10859d commit aeaf5c5

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/variableinspector.ts

+8
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,14 @@ export class VariableInspectorPanel
269269
}
270270
}
271271

272+
protected onAfterShow(msg: Message): void {
273+
super.onAfterShow(msg);
274+
if (this._source) {
275+
this._source.enabled = true;
276+
this._source.performInspection();
277+
}
278+
}
279+
272280
protected onInspectorUpdate(
273281
sender: any,
274282
allArgs: IVariableInspector.IVariableInspectorUpdate

0 commit comments

Comments
 (0)