summaryrefslogtreecommitdiffstats
path: root/runtime/src/task.rs
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/src/task.rs')
-rw-r--r--runtime/src/task.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/src/task.rs b/runtime/src/task.rs
index ac28a4e7..f3ddbca1 100644
--- a/runtime/src/task.rs
+++ b/runtime/src/task.rs
@@ -52,7 +52,7 @@ impl<T> Task<T> {
/// its output.
pub fn widget(operation: impl widget::Operation<T> + 'static) -> Task<T>
where
- T: MaybeSend + 'static,
+ T: Send + 'static,
{
Self::channel(move |sender| {
let operation =