Fix SV-2054

This commit is contained in:
Lirusaito
2016-06-08 15:42:19 -04:00
parent 548d1b6757
commit b8a2122b28

View File

@@ -3019,7 +3019,7 @@ void LLTextEditor::drawSelectionBackground()
{
gGL.getTexUnit(0)->unbind(LLTexUnit::TT_TEXTURE);
const LLColor4& color = mReadOnly ? mReadOnlyBgColor : mWriteableBgColor;
F32 alpha = hasFocus() ? 1.f : 0.5f;
F32 alpha = hasFocus() ? 1.f : 0.8f;
gGL.color4f( 1.f - color.mV[0], 1.f - color.mV[1], 1.f - color.mV[2], alpha );
S32 margin_offset = mShowLineNumbers ? UI_TEXTEDITOR_LINE_NUMBER_MARGIN : 0;