1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-01 09:13:10 +03:00

make it less alarming when showing the lcd filter error msg

This commit is contained in:
Wez Furlong 2018-03-01 08:18:34 -08:00
parent 022083ffde
commit 0af1be0f40

View File

@ -260,7 +260,7 @@ impl NamedFontImpl {
// care to abort the rest of what we're doing // care to abort the rest of what we're doing
match lib.set_lcd_filter(ftwrap::FT_LcdFilter::FT_LCD_FILTER_DEFAULT) { match lib.set_lcd_filter(ftwrap::FT_LcdFilter::FT_LCD_FILTER_DEFAULT) {
Ok(_) => (), Ok(_) => (),
Err(err) => eprintln!("FT_LcdFilter failed: {:?}", err), Err(err) => eprintln!("Ignoring: FT_LcdFilter failed: {:?}", err),
}; };
// Enable some filtering options and pull in the standard // Enable some filtering options and pull in the standard