How to drop a widget to the main widget through another widget?

Hello, so I have a widget that I can drag and drop using a title bar. I can drag and drop it just fine on the main widget, the HUD. But when I drop it on another widget, it’s not calling On Drop on the main widget anymore. Is there a way to still call it? Or maybe redirecting the On Drop from the other widget to the main widget? Thanks

You want the onDrop to trigger on 2 (or more) widgets simultaneously? Technically speaking you could unhandle the operation. Worst case scenario, propagate it yourself manually.

1 Like

If the new widget doesn’t have a on drop function.it will call “on drop canceled”in the main widget.try write something there.
Edit:on drag canceled maybe?kind of forgot!

What I want is for the widget to stay on the main widget and not be dropped on another widget. When I drag and drop a widget on another one, the dragged one disapears, while I want it to stay and act normally.