提交 c3805d82 编写于 作者: A Aleksey Glazkov

errors appeared after 21615137,...

errors appeared after 21615137, ee36a84f and 8578f024
上级 fcfe2790
......@@ -76,14 +76,15 @@ export class ReleaseNotesManager {
if (this._currentReleaseNotes) {
this._currentReleaseNotes.setName(title);
this._currentReleaseNotes.html = html;
this._webviewEditorService.revealWebview(this._currentReleaseNotes, activeEditor ? activeEditor.position : undefined);
this._webviewEditorService.revealWebview(this._currentReleaseNotes, activeEditor ? activeEditor.position : undefined, true);
} else {
this._currentReleaseNotes = this._webviewEditorService.createWebview(
'releaseNotes',
title,
activeEditor ? activeEditor.position : Position.ONE,
{ viewColumn: activeEditor ? activeEditor.position : Position.ONE, preserveFocus: true },
{ tryRestoreScrollPosition: true, enableFindWidget: true },
undefined, {
undefined,
{
onDidClickLink: uri => this.onDidClickLink(uri),
onDispose: () => { this._currentReleaseNotes = undefined; }
});
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册