diff options
author | bob <bcz@cs.brown.edu> | 2019-03-26 16:09:27 -0400 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-03-26 16:09:27 -0400 |
commit | 9f585c4f0a8287951f142f99dcc54861cb348728 (patch) | |
tree | c49e6fd5ff3e3ef77e7f2ea632fa1acfbceed321 | |
parent | e9826e0ac334bac28d173f67b4f0db0800b40680 (diff) |
treeview scrolling.
-rw-r--r-- | src/client/views/collections/CollectionTreeView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionTreeView.tsx b/src/client/views/collections/CollectionTreeView.tsx index 6cc14ebcb..70790af18 100644 --- a/src/client/views/collections/CollectionTreeView.tsx +++ b/src/client/views/collections/CollectionTreeView.tsx @@ -125,7 +125,7 @@ export class CollectionTreeView extends CollectionViewBase { ) return ( - <div id="body" className="collectionTreeView-dropTarget" onDrop={(e: React.DragEvent) => this.onDrop(e, {})} ref={this.createDropTarget} style={{ borderWidth: `${COLLECTION_BORDER_WIDTH}px` }}> + <div id="body" className="collectionTreeView-dropTarget" onWheel={(e: React.WheelEvent) => e.stopPropagation()} onDrop={(e: React.DragEvent) => this.onDrop(e, {})} ref={this.createDropTarget} style={{ borderWidth: `${COLLECTION_BORDER_WIDTH}px` }}> <div className="coll-title"> <EditableView contents={this.props.Document.Title} |