You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When dragging a tree node, the cursor is set to the copy value, which doesn't accurately represent the action I'm performing when moving a node from one section to another. I'd like to customize this value and set it to grabbing, but can't find anywhere in the source code where the value is being set to copy.
Overriding the renderDraggingItem prop on ControlledTreeEnvironment seemed to have no effect.
The text was updated successfully, but these errors were encountered:
You can probably overwrite this cursor yourself with CSS, or expand the interaction manager you are using (probably ClickToExpandInteractionManager) with a new default drop effect, see https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/dropEffect on that. There, you can overwrite the "onDragStart" method with something like
When dragging a tree node, the cursor is set to the
copy
value, which doesn't accurately represent the action I'm performing when moving a node from one section to another. I'd like to customize this value and set it tograbbing
, but can't find anywhere in the source code where the value is being set tocopy
.Overriding the
renderDraggingItem
prop onControlledTreeEnvironment
seemed to have no effect.The text was updated successfully, but these errors were encountered: