diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2019-06-23 23:29:01 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-23 23:29:01 +0000 |
commit | f002171c84a2b31f156c0401b6b2423e4e77f831 (patch) | |
tree | 8a42e1d7b0192f39cfc3d4fb3d6f35d9361f5a36 /copypasta | |
parent | 743d5d9c6614a807ab398473e62fad280845519e (diff) | |
download | alacritty-f002171c84a2b31f156c0401b6b2423e4e77f831.tar.gz alacritty-f002171c84a2b31f156c0401b6b2423e4e77f831.zip |
Fix performance issues with text reflow
Fixes #2567.
Fixes #2414.
Diffstat (limited to 'copypasta')
-rw-r--r-- | copypasta/examples/primary_selection.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/copypasta/examples/primary_selection.rs b/copypasta/examples/primary_selection.rs index 5525935e..31640807 100644 --- a/copypasta/examples/primary_selection.rs +++ b/copypasta/examples/primary_selection.rs @@ -2,6 +2,7 @@ extern crate copypasta; #[cfg(target_os = "linux")] use copypasta::x11_clipboard::{Primary, X11ClipboardContext}; +#[cfg(target_os = "linux")] use copypasta::ClipboardProvider; #[cfg(target_os = "linux")] |