From 8b367c8eab95a308c6dd53fb1f28b35ca1d5287a Mon Sep 17 00:00:00 2001 From: Router Gray Date: Thu, 24 Oct 2019 17:26:52 -0500 Subject: [PATCH] Fix a missed variable replacement in the debug settings merge. --- indra/newview/llfloatersettingsdebug.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/indra/newview/llfloatersettingsdebug.cpp b/indra/newview/llfloatersettingsdebug.cpp index 0e775e318..9031d2422 100644 --- a/indra/newview/llfloatersettingsdebug.cpp +++ b/indra/newview/llfloatersettingsdebug.cpp @@ -546,8 +546,8 @@ void LLFloaterSettingsDebug::updateControl() case TYPE_COL4U: { LLColor4U clr(sd); - color_swatch->setVisible(TRUE); - if (LLColor4(clr) != LLColor4(color_swatch->getValue())) + mValColor->setVisible(TRUE); + if (LLColor4(clr) != LLColor4(mValColor->getValue())) { mValColor->set(LLColor4(clr), TRUE, FALSE); }