From fd73af31259b631247b2de3db44ee3bb61e9c8a4 Mon Sep 17 00:00:00 2001 From: Cinders Date: Tue, 16 Jul 2013 19:00:38 -0600 Subject: [PATCH] Fix right-click send IM --- indra/llui/lltextbase.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/indra/llui/lltextbase.cpp b/indra/llui/lltextbase.cpp index 1746bf2699..f7e88b7a25 100755 --- a/indra/llui/lltextbase.cpp +++ b/indra/llui/lltextbase.cpp @@ -2007,6 +2007,7 @@ void LLTextBase::createUrlContextMenu(S32 x, S32 y, const std::string &in_url) registrar.add("Url.ShowOnMap", boost::bind(&LLUrlAction::showLocationOnMap, url)); registrar.add("Url.CopyLabel", boost::bind(&LLUrlAction::copyLabelToClipboard, url)); registrar.add("Url.CopyUrl", boost::bind(&LLUrlAction::copyURLToClipboard, url)); + registrar.add("Url.SendIM", boost::bind(&LLUrlAction::sendIM, url)); // // Additional convenience options std::string target_id = LLUrlAction::extractUuidFromSlurl(url).asString();