Skip to content

Commit

Permalink
Fix Clone definition for Injector (#8194)
Browse files Browse the repository at this point in the history
  • Loading branch information
the-mikedavis committed Sep 7, 2023
1 parent e6cdc5f commit c0fd8bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helix-term/src/ui/picker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ impl<T: Item> Clone for Injector<T> {
Injector {
dst: self.dst.clone(),
editor_data: self.editor_data.clone(),
shutown: Arc::new(AtomicBool::new(false)),
shutown: self.shutown.clone(),
}
}
}
Expand Down

0 comments on commit c0fd8bc

Please sign in to comment.