aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
authorCharlie Groves2022-08-22 01:29:30 +0000
committerGitHub2022-08-22 01:29:30 +0000
commit18909aafe21ed32f11dcdf646423b43b1a951010 (patch)
tree0aea80a2b5e009a60108b5c87e890b2e9cdbeb10 /helix-term/src
parentd993c6349b4fdeca80c270af237b39f40a7f3d9a (diff)
Update to crossterm-0.25 (#3390)
Diffstat (limited to 'helix-term/src')
-rw-r--r--helix-term/src/ui/editor.rs1
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),
}
}