Describe the bug
To Reproduce
Steps to reproduce the behavior:
- create a Drag and drop area.
- place a button inside it
- try to press the button
Expected behavior
The button is clicked instead of the dnd area in the background being dragged
Screenshots

Desktop (please complete the following information):
- OS: MacOS
- Browser EFrame native application
- Version
Additional context
I suppose the following lines lead to this behavior:
https://github.com/emilk/egui/blob/a0bb4cfef82dd9b50f990f607b7c7c4f28eb8589/crates/egui/src/hit_test.rs#L362C10-L362C47
I think the Problem is, that drag and click actions are both passed through to their respective widgets. Could this be changed or does other behavior depend on this mechanic working the way it works?