Don't force refresh the markdown preview's html when changing the active document

This commit is contained in:
Matt Bierner
2019-11-08 17:00:56 -08:00
parent 979e2b0387
commit cbd414ba58
@@ -223,7 +223,7 @@ export class DynamicMarkdownPreview extends Disposable {
this._register(vscode.window.onDidChangeActiveTextEditor(editor => {
if (editor && isMarkdownFile(editor.document) && !this._locked) {
this.update(editor.document.uri);
this.update(editor.document.uri, false);
}
}));