1
0
Fork 0
forked from wry/wry

Merge pull request #216 from mahkoh/jorth/fix-chromium-dnd

wayland: send drop event unconditionally on drop
This commit is contained in:
mahkoh 2024-06-14 18:56:57 +02:00 committed by GitHub
commit f94f199ab1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -464,6 +464,8 @@ impl PointerOwner for DndPointerOwner {
if button != self.button || state != KeyState::Released {
return;
}
let target = self.target.get();
target.node_on_dnd_drop(&self.dnd);
if let Some(src) = &self.dnd.src {
src.on_drop(seat);
}
@ -471,9 +473,7 @@ impl PointerOwner for DndPointerOwner {
None => true,
Some(s) => s.can_drop(),
};
let target = self.target.get();
if should_drop {
self.target.get().node_on_dnd_drop(&self.dnd);
*seat.dropped_dnd.borrow_mut() = Some(DroppedDnd {
dnd: self.dnd.clone(),
});