forked from mia/Aegisub
Eliminate a string copy for @ fonts in the fonts collector
This commit is contained in:
parent
c50d80cf24
commit
e53b2dab6b
1 changed files with 1 additions and 3 deletions
|
@ -84,9 +84,7 @@ FontConfigFontFileLister::FontConfigFontFileLister(FontCollectorStatusCallback c
|
|||
FontFileLister::CollectionResult FontConfigFontFileLister::GetFontPaths(std::string const& facename, int bold, bool italic, std::set<wxUniChar> const& characters) {
|
||||
CollectionResult ret;
|
||||
|
||||
std::string family(facename);
|
||||
if (family[0] == '@')
|
||||
family.erase(0, 1);
|
||||
std::string family = facename[0] == '@' ? facename.substr(1) : facename;
|
||||
boost::to_lower(family);
|
||||
|
||||
int weight = bold == 0 ? 80 :
|
||||
|
|
Loading…
Reference in a new issue