Sync up the Derive of DragEntry to match the other events (#18220)

# Objective
Add `#[derive(Clone, PartialEq, Debug, Reflect)]` to DragEntry so it
matches the other picking events.

## Solution
Copy/paste (RIP Larry Tesler)

## Testing
Just ran cargo check. I don't believe this should break anything because
I did not remove any derives it had before.

---
This commit is contained in:
Peepo-Juice 2025-03-11 15:58:20 -04:00 committed by GitHub
parent 8570af1d96
commit 949d7811cd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -278,7 +278,7 @@ pub struct DragDrop {
}
/// Dragging state.
#[derive(Debug, Clone)]
#[derive(Clone, PartialEq, Debug, Reflect)]
pub struct DragEntry {
/// The position of the pointer at drag start.
pub start_pos: Vec2,