diff options
author | Charlie Groves | 2022-08-22 01:29:30 +0000 |
---|---|---|
committer | GitHub | 2022-08-22 01:29:30 +0000 |
commit | 18909aafe21ed32f11dcdf646423b43b1a951010 (patch) | |
tree | 0aea80a2b5e009a60108b5c87e890b2e9cdbeb10 /helix-term/src/ui | |
parent | d993c6349b4fdeca80c270af237b39f40a7f3d9a (diff) |
Update to crossterm-0.25 (#3390)
Diffstat (limited to 'helix-term/src/ui')
-rw-r--r-- | helix-term/src/ui/editor.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs index 438d1412..46218e0d 100644 --- a/helix-term/src/ui/editor.rs +++ b/helix-term/src/ui/editor.rs @@ -1253,6 +1253,7 @@ impl Component for EditorView { } Event::Mouse(event) => self.handle_mouse_event(event, &mut cx), + Event::FocusGained | Event::FocusLost => EventResult::Ignored(None), } } |