diff options
| author | andrewdkim <adkim414@gmail.com> | 2019-08-14 16:09:14 -0400 |
|---|---|---|
| committer | andrewdkim <adkim414@gmail.com> | 2019-08-14 16:09:14 -0400 |
| commit | a8b5ba65bafd35b2497753375a3e8aa8d37dad4d (patch) | |
| tree | 37a2418da5d353d14ef521dfb8e00f5499c80c63 /src/client/views/collections/CollectionDockingView.tsx | |
| parent | e04277caf25be1c657a2f779a64eb5fcb4e19461 (diff) | |
| parent | 6c2d425d3724dc4742cd2a844a6e28c4d580b319 (diff) | |
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web into animationtimeline
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 13bb34037..7332a490a 100644 --- a/src/client/views/collections/CollectionDockingView.tsx +++ b/src/client/views/collections/CollectionDockingView.tsx @@ -389,7 +389,7 @@ export class CollectionDockingView extends React.Component<SubCollectionViewProp const stack = tab.contentItem.parent; // shifts the focus to this tab when another tab is dragged over it tab.element[0].onmouseenter = (e: any) => { - if (!this._isPointerDown) return; + if (!this._isPointerDown || !SelectionManager.GetIsDragging()) return; var activeContentItem = tab.header.parent.getActiveContentItem(); if (tab.contentItem !== activeContentItem) { tab.header.parent.setActiveContentItem(tab.contentItem); |
