diff options
author | bobzel <zzzman@gmail.com> | 2023-07-03 11:36:12 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-07-03 11:36:12 -0400 |
commit | bcce8d644399a913e496619f1ae8c76f813c45e5 (patch) | |
tree | f5e9a825855461cd823f4b7ce6080bcee9e77217 /src | |
parent | 334f921d6e439983d5f3605739cc4221c53a43fc (diff) |
fixed dragging onto non active tab from outside dash
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/collections/TabDocView.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/views/collections/TabDocView.tsx b/src/client/views/collections/TabDocView.tsx index ea017db14..4d780f46b 100644 --- a/src/client/views/collections/TabDocView.tsx +++ b/src/client/views/collections/TabDocView.tsx @@ -474,6 +474,8 @@ export class TabDocView extends React.Component<TabDocViewProps> { }} onPointerEnter={action(() => (this._hovering = true))} onPointerLeave={action(() => (this._hovering = false))} + onDragOver={action(() => (this._hovering = true))} + onDragLeave={action(() => (this._hovering = false))} ref={ref => { if ((this._mainCont = ref)) { if (this._lastTab) { |