Skip to content

Commit

Permalink
Remove unnecessary Send bound in runtime::Action
Browse files Browse the repository at this point in the history
This may fix compilation errors in older versions of Rust.
  • Loading branch information
hecrj committed Jun 21, 2024
1 parent 7344a31 commit b9eb861
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit b9eb861

Please sign in to comment.