diff options
author | Michael Davis | 2023-09-07 02:10:00 +0000 |
---|---|---|
committer | GitHub | 2023-09-07 02:10:00 +0000 |
commit | c0fd8bc61b4c1611a48312938aaf0e3121f393b1 (patch) | |
tree | c9b134bdcfcb7d69a24c00ac4aea63840202455e /helix-term | |
parent | e6cdc5f9d327d30886a8fa2961e7a55b4ca0b692 (diff) |
Fix Clone definition for Injector (#8194)
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/src/ui/picker.rs | 2 |
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(), } } } |