diff options
| author | Rye Mutt <rye@alchemyviewer.org> | 2024-07-01 22:35:34 -0400 |
|---|---|---|
| committer | Rye Mutt <rye@alchemyviewer.org> | 2024-07-01 22:35:34 -0400 |
| commit | 0460d9a5e84599316e505ae25b3f9a8148adb3fa (patch) | |
| tree | 697d5d97ef5e1de86c1b35e5749dc4cf60691edd /indra/llui/llui.cpp | |
| parent | b0e30477e93bb16b0cf8c7b64aaee35cedf85ca8 (diff) | |
Reduce string temporaries from finding colors in the color table
Diffstat (limited to 'indra/llui/llui.cpp')
| -rw-r--r-- | indra/llui/llui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llui.cpp b/indra/llui/llui.cpp index 448c730688..e3ddd66b58 100644 --- a/indra/llui/llui.cpp +++ b/indra/llui/llui.cpp @@ -529,7 +529,7 @@ namespace LLInitParam { if (control.isProvided() && !control().empty()) { - updateValue(LLUIColorTable::instance().getColor(control)); + updateValue(LLUIColorTable::instance().getColor(control())); } else { |
