diff options
| author | bob <bcz@cs.brown.edu> | 2020-02-06 09:25:50 -0500 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2020-02-06 09:25:50 -0500 |
| commit | 714e66d2916971b5b023ba33c20b8794c1d536e2 (patch) | |
| tree | 56c65f8490305e70635df0aa7726c98a73f6c452 /src/client/views/collections/CollectionDockingView.tsx | |
| parent | bc2798dbab082c381f7af1aa7b5ed2b6027c45aa (diff) | |
fixed unsetting of dropAction in buxton layouts.
Diffstat (limited to 'src/client/views/collections/CollectionDockingView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionDockingView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionDockingView.tsx b/src/client/views/collections/CollectionDockingView.tsx index 9c67d8041..2478aaecd 100644 --- a/src/client/views/collections/CollectionDockingView.tsx +++ b/src/client/views/collections/CollectionDockingView.tsx @@ -469,7 +469,7 @@ export class CollectionDockingView extends React.Component<SubCollectionViewProp e.preventDefault(); e.stopPropagation(); const dragData = new DragManager.DocumentDragData([doc]); - dragData.dropAction = doc._dropAction; + dragData.dropAction = doc.dropAction; DragManager.StartDocumentDrag([dragSpan], dragData, e.clientX, e.clientY); }}> <FontAwesomeIcon icon="file" size="lg" /> |
