Skip to content

Commit 78ad60f

Browse files
committed
Change webview panel title
1 parent f188f8d commit 78ad60f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands/documaticPreviewPanel.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export class DocumaticPreviewPanel {
7575
// Create the documatic preview webview
7676
const panel = vscode.window.createWebviewPanel(
7777
this.viewType,
78-
`Preview ${clsname}.cls`,
78+
`Doc for ${clsname}.cls`,
7979
{ preserveFocus: true, viewColumn: vscode.ViewColumn.Beside },
8080
{
8181
enableScripts: true,
@@ -250,7 +250,7 @@ export class DocumaticPreviewPanel {
250250

251251
// Update the editor and panel title
252252
this._editor = editor;
253-
this._panel.title = `Preview ${clsname}.cls`;
253+
this._panel.title = `Doc for ${clsname}.cls`;
254254

255255
// Update the root DocumentSymbol
256256
this._rootSymbol = (

0 commit comments

Comments
 (0)