diff options
author | andreykproductengine <akleshchev@productengine.com> | 2016-07-14 19:31:35 +0300 |
---|---|---|
committer | andreykproductengine <akleshchev@productengine.com> | 2016-07-14 19:31:35 +0300 |
commit | 9a262f345ebd777c21632fece812f6aa9bf8eff2 (patch) | |
tree | c338811e89b265e1e7e5060945404cb2c2a35975 /indra/llui/llui.cpp | |
parent | efb49c8ccfe1ef997960bcc5dc991fa55b90b622 (diff) |
MAINT-6572 FIXED UI freezes when clicking on a specific folder in the inventory
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 aabc7ed2e4..f790d8e005 100644 --- a/indra/llui/llui.cpp +++ b/indra/llui/llui.cpp @@ -522,7 +522,7 @@ const LLView* LLUI::resolvePath(const LLView* context, const std::string& path) else { std::string part(ti->begin(), ti->end()); - context = context->findChildView(part, recurse); + context = context->findChildView(LLURI::unescape(part), recurse); recurse = false; } } |