summaryrefslogtreecommitdiff
path: root/indra/llui/lltextbox.cpp
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2025-01-21 14:04:57 +0800
committerErik Kundiman <erik@megapahit.org>2025-01-21 14:04:57 +0800
commita314646f06b1a9f108b184d1074f6039405a522b (patch)
tree8e01cd393bd5a4ad8dd3784a7c126f436d2c2b89 /indra/llui/lltextbox.cpp
parentad3694fd4b6bfaf5621a12eb4536a1eb6a10f8f2 (diff)
parent75e01f894d52f75c1a79746bf2d3294b3ca48afe (diff)
Merge remote-tracking branch 'secondlife/release/2024.12-ForeverFPS' into 2024.12-ForeverFPS
Diffstat (limited to 'indra/llui/lltextbox.cpp')
-rw-r--r--indra/llui/lltextbox.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llui/lltextbox.cpp b/indra/llui/lltextbox.cpp
index 05af36b71e..9f945d3735 100644
--- a/indra/llui/lltextbox.cpp
+++ b/indra/llui/lltextbox.cpp
@@ -159,7 +159,8 @@ LLSD LLTextBox::getValue() const
bool LLTextBox::setTextArg( const std::string& key, const LLStringExplicit& text )
{
mText.setArg(key, text);
- LLTextBase::setText(mText.getString());
+ static const LLStyle::Params input_params = LLStyle::Params();
+ LLTextBase::setText(mText.getString(), input_params);
return true;
}