Merge pull request #2546 from overleaf/bg-update-filetree-on-open

update the file tree selection whenever a document is opened

GitOrigin-RevId: 88d7b651b43d0a0ca5fa9998d4c42c7b1d3effc5
This commit is contained in:
Brian Gough 2020-01-29 15:05:57 +00:00 committed by Copybot
parent cd8693db40
commit 4bbc745f4a
2 changed files with 2 additions and 2 deletions

View file

@ -146,6 +146,8 @@ define([
}
if (doc.id === this.$scope.editor.open_doc_id && !options.forceReopen) {
// automatically update the file tree whenever the file is opened
this.ide.fileTreeManager.selectEntity(doc)
this.$scope.$apply(() => {
return done()
})

View file

@ -1018,8 +1018,6 @@ define([
ide.editorManager.openDoc(entity, {
gotoLine: line,
gotoColumn: column
// commented out because it causes an out of sync error
// forceReopen: true
})
}
})