From b554dc3177a16af4c8a055d7f28651b559ad95e3 Mon Sep 17 00:00:00 2001 From: Ian Douglas Scott Date: Wed, 6 Mar 2024 16:09:58 -0800 Subject: [PATCH] Fix / work around issue with drag surface not being destroyed --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 27e8d4d..2549fea 100644 --- a/src/main.rs +++ b/src/main.rs @@ -570,7 +570,7 @@ impl Application for App { Msg::DndWorkspaceLeave => { // XXX Doesn't work since leave for a widget may come after enter for another // self.drop_target = None; - // return accept_mime_type(None); + return accept_mime_type(None); } Msg::DndWorkspaceDrop => { return request_dnd_data(TOPLEVEL_MIME.to_string());