diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2020-04-03 17:50:24 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2020-04-03 17:50:24 -0400 |
| commit | 5414cc78dfb650954c9b6fef8115a5945ea8d6a6 (patch) | |
| tree | 86a9a92ca208848f500a156df8f9d9692938bd9c /src/client/views/DocumentDecorations.tsx | |
| parent | 9d06cd45c732006ed5ee13734fa8145886e349c0 (diff) | |
changed dontSelect to dontDecorateSelection
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 79600b7c1..c35263237 100644 --- a/src/client/views/DocumentDecorations.tsx +++ b/src/client/views/DocumentDecorations.tsx @@ -69,7 +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 || + documentView.dontDecorateSelection || Doc.AreProtosEqual(documentView.props.Document, CurrentUserUtils.UserDocument)) { return bounds; } |
