From 5e5dafac26c54c43e5c76455a4f946d94e0583dc Mon Sep 17 00:00:00 2001 From: Lirusaito Date: Sun, 3 Mar 2019 21:19:11 -0500 Subject: [PATCH] Fix validation text color violating skin colors --- indra/newview/llfloatermarketplacelistings.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/indra/newview/llfloatermarketplacelistings.cpp b/indra/newview/llfloatermarketplacelistings.cpp index 9cbfa354b..1194d12b0 100644 --- a/indra/newview/llfloatermarketplacelistings.cpp +++ b/indra/newview/llfloatermarketplacelistings.cpp @@ -859,6 +859,7 @@ void LLFloaterMarketplaceValidation::onOpen(/*const LLSD& key*/) { // Errors are printed in bold, other messages in normal font LLStyleSP style(new LLStyle); + style->setColor(mEditor->getReadOnlyFgColor()); style->mBold = mCurrentLine->mErrorLevel == LLError::LEVEL_ERROR; mEditor->appendText(mCurrentLine->mMessage, false, new_line, style); new_line = true;