diff options
author | bob <bcz@cs.brown.edu> | 2019-02-19 11:33:26 -0500 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-02-19 11:33:26 -0500 |
commit | 39c6ba3292467979e310f3b577041c2f5e38273f (patch) | |
tree | a6a4d290dff330855e9626e37fbd43a9ad592137 /src/client/views/nodes/DocumentView.tsx | |
parent | 49e946d57c5dc0f21a6d6a98436429a353c96907 (diff) |
fixed selection problem
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index d1fd6fb22..f8770f020 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -80,7 +80,6 @@ export class DocumentView extends React.Component<DocumentViewProps> { onPointerDown = (e: React.PointerEvent): void => { this._downX = e.clientX; this._downY = e.clientY; - var me = this; if (e.shiftKey && e.buttons === 1) { CollectionDockingView.Instance.StartOtherDrag(this._mainCont.current!, this.props.Document); e.stopPropagation(); |