diff options
author | Joe Wilm <joe@jwilm.com> | 2017-12-22 21:00:50 -0800 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2017-12-22 21:01:23 -0800 |
commit | 7f7ec0682c3e186f28ee6c1e7502cf3151788d02 (patch) | |
tree | 7f55fc1fae300d7526cafb15861a4010e664552f /font | |
parent | 79e0ced15d7e3c12485920e606e0e5672b68ee2d (diff) | |
download | alacritty-7f7ec0682c3e186f28ee6c1e7502cf3151788d02.tar.gz alacritty-7f7ec0682c3e186f28ee6c1e7502cf3151788d02.zip |
Remove debug print
Diffstat (limited to 'font')
-rw-r--r-- | font/src/darwin/mod.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/font/src/darwin/mod.rs b/font/src/darwin/mod.rs index ddda786a..53f78e4b 100644 --- a/font/src/darwin/mod.rs +++ b/font/src/darwin/mod.rs @@ -370,10 +370,7 @@ impl Descriptor { let mut fallbacks = cascade_list_for_languages(&menlo, &vec!["en".to_owned()]) .into_iter() .filter(|desc| desc.font_path != "") - .map(|desc| { - println!("{}", desc.display_name); - desc.to_font(size, false) - }) + .map(|desc| desc.to_font(size, false)) .collect::<Vec<_>>(); // TODO, we can't use apple's proposed |