set panel collapsed to false by default (#17196)

This commit is contained in:
Alex Ma
2021-09-30 12:49:24 -07:00
committed by GitHub
parent 5b83606d21
commit eec2479ec2

View File

@@ -31,7 +31,7 @@ export class ProfilerState implements IDisposable {
private _isPaused?: boolean;
private _isStopped?: boolean;
private _autoscroll?: boolean;
private _isPanelCollapsed = true;
private _isPanelCollapsed = false;
public get isConnected(): boolean | undefined { return this._isConnected; }
public get isRunning(): boolean | undefined { return this._isRunning; }