aboutsummaryrefslogtreecommitdiff
path: root/src/event.rs
diff options
context:
space:
mode:
authorJoe Wilm <joe@jwilm.com>2016-12-26 22:52:37 -0500
committerJoe Wilm <joe@jwilm.com>2016-12-26 22:56:19 -0500
commitae470bf68bf27921109890da3d90a5b61fa6a7aa (patch)
treed9e3d3a90f29471a0fe68a0e3966d95deb3a6f39 /src/event.rs
parentd28a7344731c4cd913687a893334555feed4e270 (diff)
downloadalacritty-ae470bf68bf27921109890da3d90a5b61fa6a7aa.tar.gz
alacritty-ae470bf68bf27921109890da3d90a5b61fa6a7aa.zip
Implement copying selection for macOS
Still need automatic loading into selection copy buffer for linux.
Diffstat (limited to 'src/event.rs')
-rw-r--r--src/event.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/event.rs b/src/event.rs
index 0c4c701b..a231e898 100644
--- a/src/event.rs
+++ b/src/event.rs
@@ -148,7 +148,6 @@ impl<N: Notify> Processor<N> {
},
glutin::Event::KeyboardInput(state, _code, key, mods, string) => {
processor.process_key(state, key, mods, string);
- processor.ctx.selection.clear();
},
glutin::Event::MouseInput(state, button) => {
processor.mouse_input(state, button);