diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2020-06-23 23:58:52 +0300 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2020-06-23 23:58:52 +0300 |
commit | 05f3287512557cd4cb41de7a8fe3f5171a48481d (patch) | |
tree | f43de01e3c874ba335862dff364e4b0082563dd7 /indra/llplugin/llpluginclassmedia.cpp | |
parent | f8137f68a0f157c7dc7766a695a62d59b4198291 (diff) | |
parent | c0087286e78098ee246ea821aefb5686ab8bda78 (diff) |
Merge branch 'master' into DRTVWR-501-maint
Diffstat (limited to 'indra/llplugin/llpluginclassmedia.cpp')
-rw-r--r-- | indra/llplugin/llpluginclassmedia.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/llplugin/llpluginclassmedia.cpp b/indra/llplugin/llpluginclassmedia.cpp index 85197d1272..58069afdf9 100644 --- a/indra/llplugin/llpluginclassmedia.cpp +++ b/indra/llplugin/llpluginclassmedia.cpp @@ -1138,6 +1138,10 @@ void LLPluginClassMedia::receivePluginMessage(const LLPluginMessage &message) mDebugMessageLevel = message.getValue("message_level"); mediaEvent(LLPluginClassMediaOwner::MEDIA_EVENT_DEBUG_MESSAGE); } + else if (message_name == "tooltip_text") + { + mHoverText = message.getValue("tooltip"); + } else { LL_WARNS("Plugin") << "Unknown " << message_name << " class message: " << message_name << LL_ENDL; |