Remove unnecessary Send bound in runtime::Action
This may fix compilation errors in older versions of Rust.
This commit is contained in:
parent
7344a31010
commit
b9eb86199a
1 changed files with 1 additions and 1 deletions
|
|
@ -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),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue