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:
parent
8570af1d96
commit
949d7811cd
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user