diff options
author | maxim_productengine <mnikolenko@productengine.com> | 2019-06-12 13:43:29 +0300 |
---|---|---|
committer | maxim_productengine <mnikolenko@productengine.com> | 2019-06-12 13:43:29 +0300 |
commit | 69a85e3ed0960d90c2a093029768a550fb3f591d (patch) | |
tree | ad936ab80962967d28d3a4b8b52b31d8486be79e | |
parent | 7ff3fe945378f6b43474e99b53e25fe92d69d211 (diff) |
SL-11409 [Legacy Profiles] Copy Display name correctly regardless of View Display Names setting.
-rw-r--r-- | indra/newview/llpanelprofile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llpanelprofile.cpp b/indra/newview/llpanelprofile.cpp index a60493a360..472285e3d9 100644 --- a/indra/newview/llpanelprofile.cpp +++ b/indra/newview/llpanelprofile.cpp @@ -787,7 +787,7 @@ void LLPanelProfileSecondLife::onCommitMenu(const LLSD& userdata) LLWString wstr; if (item_name == "display") { - wstr = utf8str_to_wstring(av_name.getDisplayName()); + wstr = utf8str_to_wstring(av_name.getDisplayName(true)); } else if (item_name == "name") { |