mirror of
https://github.com/wez/wezterm.git
synced 2024-12-02 23:55:11 +03:00
fix inverted logic when warning about not finding a font in font_dirs
This commit is contained in:
parent
ff210a1c8e
commit
2522b276cc
@ -119,7 +119,7 @@ impl ParsedFont {
|
||||
break;
|
||||
}
|
||||
}
|
||||
if !found && FontLocatorSelection::get_default() != FontLocatorSelection::ConfigDirsOnly
|
||||
if !found && FontLocatorSelection::get_default() == FontLocatorSelection::ConfigDirsOnly
|
||||
{
|
||||
log::error!("Did not locate a font match for {:?}", attr);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user