diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2020-03-10 00:39:30 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2020-03-10 00:39:30 -0400 |
| commit | 4eaec2585a4f38a826707f2cf850d287276d9b14 (patch) | |
| tree | b4dde9a3d2cc54f293d7ddf022d8fdf453e05cba /src/client/views/DocumentDecorations.tsx | |
| parent | cabb2cf9065d85112f1bd89e31b41dafdbc4ba54 (diff) | |
fixed up iconifying of different document types. fixed selection to not select toolbar tabs. fixed outline-like document creation in tree views.
Diffstat (limited to 'src/client/views/DocumentDecorations.tsx')
| -rw-r--r-- | src/client/views/DocumentDecorations.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/DocumentDecorations.tsx b/src/client/views/DocumentDecorations.tsx index 2ec170ddb..c4abc935f 100644 --- a/src/client/views/DocumentDecorations.tsx +++ b/src/client/views/DocumentDecorations.tsx @@ -69,6 +69,7 @@ export class DocumentDecorations extends React.Component<{}, { value: string }> get Bounds(): { x: number, y: number, b: number, r: number } { return SelectionManager.SelectedDocuments().reduce((bounds, documentView) => { if (documentView.props.renderDepth === 0 || + documentView.props.Document.dontSelect || Doc.AreProtosEqual(documentView.props.Document, CurrentUserUtils.UserDocument)) { return bounds; } |
