diff options
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(), } } } |