From 7d3b789a81d9af5c0177c9ed2476c7f422dc30a7 Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Thu, 10 Oct 2024 23:09:52 -0400 Subject: [PATCH] refactor: peek_dnd try to parse data --- Cargo.toml | 3 +-- runtime/src/dnd.rs | 3 ++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4c49d39fd1..9a9a4e5f4f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -163,7 +163,6 @@ bytemuck = { version = "1.0", features = ["derive"] } bytes = "1.6" cosmic-text = { git = "https://github.com/pop-os/cosmic-text.git" } -# cosmic-text = "0.10" dark-light = "1.0" futures = "0.3" @@ -195,7 +194,7 @@ rustc-hash = "2.0" sctk = { package = "smithay-client-toolkit", version = "0.19.1" } smol = "1.0" smol_str = "0.2" -softbuffer = { git = "https://github.com/pop-os/softbuffer", tag = "cosmic-4.0" } +softbuffer = { version = "0.4" } syntect = "5.2" sysinfo = "0.30" thiserror = "1.0" diff --git a/runtime/src/dnd.rs b/runtime/src/dnd.rs index ac42b73427..2fd3924499 100644 --- a/runtime/src/dnd.rs +++ b/runtime/src/dnd.rs @@ -78,7 +78,7 @@ impl std::fmt::Debug for DndAction { } /// Read the current contents of the Dnd operation. -pub fn peek_dnd() -> Task, String)>> { +pub fn peek_dnd() -> Task> { task::oneshot(|tx| { Action::Dnd(DndAction::PeekDnd( T::allowed() @@ -87,6 +87,7 @@ pub fn peek_dnd() -> Task, String)>> { tx, )) }) + .map(|data| data.and_then(|data| T::try_from(data).ok())) } /// Register a Dnd destination.