diff options
author | Joe Wilm <joe@jwilm.com> | 2016-12-26 22:52:37 -0500 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2016-12-26 22:56:19 -0500 |
commit | ae470bf68bf27921109890da3d90a5b61fa6a7aa (patch) | |
tree | d9e3d3a90f29471a0fe68a0e3966d95deb3a6f39 /src/event.rs | |
parent | d28a7344731c4cd913687a893334555feed4e270 (diff) | |
download | alacritty-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.rs | 1 |
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); |