summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorSteven Bennetts <steve@lindenlab.com>2009-10-05 22:45:32 +0000
committerSteven Bennetts <steve@lindenlab.com>2009-10-05 22:45:32 +0000
commit87d8b4c11b7f850ceae11082c40c975b90ecdfc1 (patch)
tree64e79147e86bd90f63595ed4cb8c04a716545f2c /indra
parentb5a11af772b10752ba1a93decb12dc74ebc19061 (diff)
* EXT-1301 - Fixed showstopper by eliminating the notification that was blocking testing (by getting triggered every frame on a failed media plugin load)
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llviewermedia.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llviewermedia.cpp b/indra/newview/llviewermedia.cpp
index 100a34291b..2b972614f1 100644
--- a/indra/newview/llviewermedia.cpp
+++ b/indra/newview/llviewermedia.cpp
@@ -1378,7 +1378,8 @@ void LLViewerMediaImpl::handleMediaEvent(LLPluginClassMedia* plugin, LLPluginCla
{
LLSD args;
args["PLUGIN"] = LLMIMETypes::implType(mMimeType);
- LLNotifications::instance().add("MediaPluginFailed", args);
+ // SJB: This is getting called every frame if the plugin fails to load, continuously respawining the alert!
+ //LLNotifications::instance().add("MediaPluginFailed", args);
}
break;