Skip to content
Snippets Groups Projects
Commit 2d42ec6a authored by Dmitry Zaporozhan's avatar Dmitry Zaporozhan
Browse files

Fixed normal bug EXT-4321 - Pop-up window with description doesn't appear if...

Fixed normal bug EXT-4321 - Pop-up window with description doesn't appear if choose 'Copy SLUrl' from 'Favorites Bar' context menu.

--HG--
branch : product-engine
parent a3f951fa
No related branches found
No related tags found
No related merge requests found
...@@ -51,6 +51,7 @@ ...@@ -51,6 +51,7 @@
#include "llinventorymodel.h" #include "llinventorymodel.h"
#include "llfloaterworldmap.h" #include "llfloaterworldmap.h"
#include "lllandmarkactions.h" #include "lllandmarkactions.h"
#include "llnotificationsutil.h"
#include "llsidetray.h" #include "llsidetray.h"
#include "lltoggleablemenu.h" #include "lltoggleablemenu.h"
#include "llviewerinventory.h" #include "llviewerinventory.h"
...@@ -975,6 +976,10 @@ BOOL LLFavoritesBarCtrl::handleRightMouseDown(S32 x, S32 y, MASK mask) ...@@ -975,6 +976,10 @@ BOOL LLFavoritesBarCtrl::handleRightMouseDown(S32 x, S32 y, MASK mask)
void copy_slurl_to_clipboard_cb(std::string& slurl) void copy_slurl_to_clipboard_cb(std::string& slurl)
{ {
gClipboard.copyFromString(utf8str_to_wstring(slurl)); gClipboard.copyFromString(utf8str_to_wstring(slurl));
LLSD args;
args["SLURL"] = slurl;
LLNotificationsUtil::add("CopySLURL", args);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment