diff options
author | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2025-04-25 22:31:53 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-25 22:31:53 +0300 |
commit | 17e974689c76a2b76cf27e3a1c9dde371f4f877f (patch) | |
tree | ef2c959fa556b19407d72ccc581cc9e55d1bb525 /indra/newview/llpanelprofile.cpp | |
parent | 25c11f09655db011d27fec6887854d1200f63b19 (diff) | |
parent | 1eb34b43fb88a0b7551d9083ab46ba7df2feab14 (diff) |
Merge pull request #3943 from secondlife/maxim/2025.04-chat-mention
#3758 initial chat mention support
Diffstat (limited to 'indra/newview/llpanelprofile.cpp')
-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 08605f7cf4..c81746a48a 100644 --- a/indra/newview/llpanelprofile.cpp +++ b/indra/newview/llpanelprofile.cpp @@ -328,7 +328,7 @@ public: } const std::string verb = params[1].asString(); - if (verb == "about") + if (verb == "about" || verb == "mention") { LLAvatarActions::showProfile(avatar_id); return true; |