diff options
author | simon <none@none> | 2014-01-07 15:18:29 -0800 |
---|---|---|
committer | simon <none@none> | 2014-01-07 15:18:29 -0800 |
commit | f291995dac53c2aba9d79aef8b6cd91a5c836e9f (patch) | |
tree | 8dd6b3b8dcde04580163c2f96ff03ac2ec80ce44 /indra/llui/llscrolllistctrl.cpp | |
parent | 2a1098552e071c625a8c1614a331e9557212d380 (diff) |
Revert changes made for MAINT-535 to test in a release cohort.
Diffstat (limited to 'indra/llui/llscrolllistctrl.cpp')
-rwxr-xr-x | indra/llui/llscrolllistctrl.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/llui/llscrolllistctrl.cpp b/indra/llui/llscrolllistctrl.cpp index 594e1e150b..d290413f7a 100755 --- a/indra/llui/llscrolllistctrl.cpp +++ b/indra/llui/llscrolllistctrl.cpp @@ -1855,7 +1855,9 @@ void LLScrollListCtrl::showNameDetails(std::string id, bool is_group) // open the resident's details or the group details std::string sltype = is_group ? "group" : "agent"; std::string slurl = "secondlife:///app/" + sltype + "/" + id + "/about"; - LLUrlAction::clickAction(slurl, true); + LLUrlAction::clickAction(slurl); + // MAINT-535 reversion test + //LLUrlAction::clickAction(slurl, true); } void LLScrollListCtrl::copyNameToClipboard(std::string id, bool is_group) |