diff options
author | bobzel <zzzman@gmail.com> | 2020-08-12 19:19:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-12 19:19:15 -0400 |
commit | 575ed4504f8bd5da42d209bcc313a4fc766247e3 (patch) | |
tree | 264c526a4883e6b2d0509563b72eb8987f3878f5 /src/client/views/DocumentDecorations.tsx | |
parent | bb74db76c4cf694c646a3f248fa8151f15d8020e (diff) | |
parent | 5d57b23f67908e4f780058cb2568491b58039c1f (diff) |
Merge pull request #576 from browngraphicslab/menu_restructure
Menu restructure
Diffstat (limited to 'src/client/views/DocumentDecorations.tsx')
-rw-r--r-- | src/client/views/DocumentDecorations.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/DocumentDecorations.tsx b/src/client/views/DocumentDecorations.tsx index 596c5931b..fdf802c6a 100644 --- a/src/client/views/DocumentDecorations.tsx +++ b/src/client/views/DocumentDecorations.tsx @@ -692,7 +692,7 @@ export class DocumentDecorations extends React.Component<{}, { value: string }> <div className="documentDecorations-iconifyButton" onPointerDown={this.onIconifyDown}> {"_"} </div></Tooltip>} - <Tooltip title={<><div className="dash-tooltip">Open Document In Tab</div></>} placement="top"><div className="documentDecorations-openInTab" onPointerDown={this.onMaximizeDown}> + <Tooltip title={<><div className="dash-tooltip">Open In a New Pane</div></>} placement="top"><div className="documentDecorations-openInTab" onPointerDown={this.onMaximizeDown}> {SelectionManager.SelectedDocuments().length === 1 ? <FontAwesomeIcon icon="external-link-alt" className="documentView-minimizedIcon" /> : "..."} </div></Tooltip> {rotButton} |