diff options
author | bob <bcz@cs.brown.edu> | 2019-12-05 11:37:08 -0500 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-12-05 11:37:08 -0500 |
commit | f1d89e46aa4a2d10dcbe6d36ecf2aebdb348f887 (patch) | |
tree | cb32bbd2d7e642f3bb1f8cacbe147dc571fca26d /src/client/views/nodes/DocumentView.tsx | |
parent | fa89fbf06f3d27ff0ca3f62fa6e6ab4fe378edf1 (diff) |
better highlighting of path target
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 9f5b86e8d..c6b134d6c 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -532,7 +532,7 @@ export class DocumentView extends DocComponent<DocumentViewProps, Document>(Docu cm.addItem({ description: `path: ${path}`, event: () => { this.props.LibraryPath.map(lp => Doc.GetProto(lp).treeViewOpen = lp.treeViewOpen = true); - Doc.BrushDoc(this.props.Document); + Doc.linkFollowHighlight(this.props.Document); }, icon: "check" }); } |