Skip to content

Commit c508bff

Browse files
allancascanteAllan Cascante
andauthored
update to launch profiler in active instead that beside (#21498)
Co-authored-by: Allan Cascante <acascante@microsoft.com>
1 parent 6e45d24 commit c508bff

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

extensions/mssql/src/profiler/profilerWebviewController.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ export class ProfilerWebviewController extends ReactWebviewPanelController<
138138
},
139139
{
140140
title: title,
141-
viewColumn: vscode.ViewColumn.Beside,
141+
viewColumn: vscode.ViewColumn.Active,
142142
iconPath: {
143143
dark: vscode.Uri.joinPath(
144144
context.extensionUri,
@@ -254,7 +254,7 @@ export class ProfilerWebviewController extends ReactWebviewPanelController<
254254
title: "",
255255
run: async () => {
256256
this.createWebviewPanel();
257-
this.panel.reveal(vscode.ViewColumn.Beside);
257+
this.panel.reveal(vscode.ViewColumn.Active);
258258
},
259259
};
260260
}
@@ -799,7 +799,7 @@ export class ProfilerWebviewController extends ReactWebviewPanelController<
799799
* Reveals the webview panel to the foreground
800800
*/
801801
public revealToForeground(): void {
802-
this.panel.reveal(vscode.ViewColumn.Beside);
802+
this.panel.reveal(vscode.ViewColumn.Active);
803803
}
804804

805805
/**

0 commit comments

Comments
 (0)