aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
authorMichael Davis2023-09-07 02:10:00 +0000
committerGitHub2023-09-07 02:10:00 +0000
commitc0fd8bc61b4c1611a48312938aaf0e3121f393b1 (patch)
treec9b134bdcfcb7d69a24c00ac4aea63840202455e /helix-term/src
parente6cdc5f9d327d30886a8fa2961e7a55b4ca0b692 (diff)
Fix Clone definition for Injector (#8194)
Diffstat (limited to 'helix-term/src')
-rw-r--r--helix-term/src/ui/picker.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/picker.rs b/helix-term/src/ui/picker.rs
index 1f94a72c..a8411f53 100644
--- a/helix-term/src/ui/picker.rs
+++ b/helix-term/src/ui/picker.rs
@@ -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(),
}
}
}