runtime: Remove start_dnd

This is not currently used. And is impossible to (soundly) use, since it
requires a `Send` bound, which `State` and `Element` lack.
This commit is contained in:
Ian Douglas Scott 2025-01-03 14:21:35 -08:00 committed by Ashley Wulber
parent bd6c04d809
commit ed5de12e69
No known key found for this signature in database
GPG key ID: 5216D4F46A90A820
3 changed files with 2 additions and 52 deletions

View file

@ -2170,15 +2170,6 @@ where
iced_runtime::dnd::DndAction::SetAction(a) => {
clipboard.set_action(a);
}
iced_runtime::dnd::DndAction::StartDnd {
internal,
source_surface,
icon_surface,
content,
actions,
} => {
// removed
}
},
Action::PlatformSpecific(a) => {
platform_specific.send_action(a);