From bec1f5bbe0e0fec0d57b66ee227c41f15165057e Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Thu, 10 Nov 2022 00:17:27 +0100 Subject: Remove unnecessary `into` call in `operation::scoped` --- native/src/widget/operation.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native/src/widget/operation.rs b/native/src/widget/operation.rs index dd6b3c54..2b1179f1 100644 --- a/native/src/widget/operation.rs +++ b/native/src/widget/operation.rs @@ -97,7 +97,7 @@ pub fn scoped( } ScopedOperation { - target: target.into(), + target, operation: Box::new(operation), } } -- cgit