Remove unnecessary Send bound in runtime::Action

This may fix compilation errors in older versions of Rust.
This commit is contained in:
Héctor Ramón Jiménez 2024-06-21 21:28:57 +02:00
parent 7344a31010
commit b9eb86199a
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -60,7 +60,7 @@ pub enum Action<T> {
},
/// Run a widget operation.
Widget(Box<dyn widget::Operation<()> + Send>),
Widget(Box<dyn widget::Operation<()>>),
/// Run a clipboard action.
Clipboard(clipboard::Action),