diff options
author | Oz Linden <oz@lindenlab.com> | 2011-11-08 15:59:50 -0500 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2011-11-08 15:59:50 -0500 |
commit | 6b516b7a6c4a59ebd3bf9e84075bb4539be072e4 (patch) | |
tree | f910bb425c05a74eb2f7df0eab050de4d648ac20 /indra/llplugin/llpluginclassmedia.cpp | |
parent | 89b75e75315592da9f4aac2ed851b61f1ac20851 (diff) | |
parent | 32dca99fe59196fa4a92a815b441b4e6e9f747f0 (diff) |
merge changes for vmrg-182
Diffstat (limited to 'indra/llplugin/llpluginclassmedia.cpp')
-rw-r--r-- | indra/llplugin/llpluginclassmedia.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/llplugin/llpluginclassmedia.cpp b/indra/llplugin/llpluginclassmedia.cpp index c53857fcee..dbd96673a1 100644 --- a/indra/llplugin/llpluginclassmedia.cpp +++ b/indra/llplugin/llpluginclassmedia.cpp @@ -1239,6 +1239,14 @@ void LLPluginClassMedia::focus(bool focused) sendMessage(message); } +void LLPluginClassMedia::set_page_zoom_factor( double factor ) +{ + LLPluginMessage message(LLPLUGIN_MESSAGE_CLASS_MEDIA_BROWSER, "set_page_zoom_factor"); + + message.setValueReal("factor", factor); + sendMessage(message); +} + void LLPluginClassMedia::clear_cache() { LLPluginMessage message(LLPLUGIN_MESSAGE_CLASS_MEDIA_BROWSER, "clear_cache"); |