diff options
| author | Alexander Gavriliuk <alexandrgproductengine@lindenlab.com> | 2023-07-12 20:45:53 +0200 | 
|---|---|---|
| committer | Guru <alexandrgproductengine@lindenlab.com> | 2023-07-12 21:50:35 +0200 | 
| commit | 8b718cbc2edc1f18bfa0cc0a76899fcade149813 (patch) | |
| tree | d5a36c91462410d62465a4f5fc3693e7bfabf900 /indra | |
| parent | 16f0329d184f62437c296483143aef72f1aaa284 (diff) | |
SL-19831 Check marks in the menu are less visible
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/llrender/llfontfreetype.cpp | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/indra/llrender/llfontfreetype.cpp b/indra/llrender/llfontfreetype.cpp index e4010579b3..ca9f2ed778 100644 --- a/indra/llrender/llfontfreetype.cpp +++ b/indra/llrender/llfontfreetype.cpp @@ -461,6 +461,8 @@ LLFontGlyphInfo* LLFontFreetype::addGlyph(llwchar wch, EFontGlyphType glyph_type  	// Fallback fonts with a functor have precedence over everything else  	fallback_font_vector_t::const_iterator it_fallback = mFallbackFonts.cbegin(); +	/* This leads to a bug SL-19831 "Check marks in the menu are less visible." +	** Also, LLFontRegistry::createFont() says: "Fallback fonts don't render"  	for (; it_fallback != mFallbackFonts.cend() && it_fallback->second; ++it_fallback)  	{  		if (it_fallback->second(wch)) @@ -472,6 +474,7 @@ LLFontGlyphInfo* LLFontFreetype::addGlyph(llwchar wch, EFontGlyphType glyph_type  			}  		}  	} +	*/  	// Initialize char to glyph map  	glyph_index = FT_Get_Char_Index(mFTFace, wch); | 
