diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2017-11-27 10:57:11 +0000 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2017-11-27 10:57:11 +0000 |
commit | 31f7f5d132d05364217b47830d4b0e6ca57ba9e3 (patch) | |
tree | 38a82542550c00583783451638bbbead43da7589 /indra/newview | |
parent | 3d7dedff268cdedbea586c3e329c0682ee841290 (diff) | |
parent | 6a025ddbbcbf5d37485192fc29dea6f275bc97b9 (diff) |
Merged in MAINT-8027 (pull request #438)
MAINT-8027 Fixed URL-named group is displayed as a link in 'Group Inspector'
Approved-by: Andrey Lihatskiy <andreylproductengine@lindenlab.com>
Approved-by: Maxim Nikolenko <maximnproductengine@lindenlab.com>
Approved-by: Simon Linden <simon@lindenlab.com>
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llinspectgroup.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llinspectgroup.cpp b/indra/newview/llinspectgroup.cpp index a4fce36783..8332443162 100644 --- a/indra/newview/llinspectgroup.cpp +++ b/indra/newview/llinspectgroup.cpp @@ -205,7 +205,7 @@ void LLInspectGroup::nameUpdatedCallback( { if (id == mGroupID) { - getChild<LLUICtrl>("group_name")->setValue( LLSD(name) ); + getChild<LLUICtrl>("group_name")->setValue(LLSD("<nolink>" + name + "</nolink>")); } // Otherwise possibly a request for an older inspector, ignore it |