mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-28 12:33:35 +01:00
Correctly reload markdown preview on md contribution change (#188218)
Fixes #184295
This commit is contained in:
@@ -95,7 +95,7 @@ class MarkdownPreview extends Disposable implements WebviewResourceProvider {
|
||||
}
|
||||
|
||||
this._register(_contributionProvider.onContributionsChanged(() => {
|
||||
setTimeout(() => this.refresh(), 0);
|
||||
setTimeout(() => this.refresh(true), 0);
|
||||
}));
|
||||
|
||||
this._register(vscode.workspace.onDidChangeTextDocument(event => {
|
||||
|
||||
Reference in New Issue
Block a user