aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/DocumentDecorations.tsx
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2020-03-29 19:11:16 -0400
committerBob Zeleznik <zzzman@gmail.com>2020-03-29 19:11:16 -0400
commitc0335eab060206d49020239788c43bb0626a467c (patch)
treeb035a02329ddefba152256d530884ace999ed81f /src/client/views/DocumentDecorations.tsx
parentd5720dcd52dc646fa204c8798b9761010778288f (diff)
fixed collection chrome pointerEvents. fixed dontSelect to allow right-clicking. got rid of '@" template field special case
Diffstat (limited to 'src/client/views/DocumentDecorations.tsx')
-rw-r--r--src/client/views/DocumentDecorations.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/DocumentDecorations.tsx b/src/client/views/DocumentDecorations.tsx
index ff72592d8..3e07fd109 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.props.Document.dontSelect ||
Doc.AreProtosEqual(documentView.props.Document, CurrentUserUtils.UserDocument)) {
return bounds;
}