diff options
author | Steven Bennetts <steve@lindenlab.com> | 2009-10-05 22:45:32 +0000 |
---|---|---|
committer | Steven Bennetts <steve@lindenlab.com> | 2009-10-05 22:45:32 +0000 |
commit | 895e8ad446ab383e1211f759e8b55aa0fff2efc1 (patch) | |
tree | 404437e03deed365fae291a4b39b6fac719837a4 | |
parent | 62f3daf588324278094110d466c4f2f1b8cc9ae8 (diff) |
* EXT-1301 - Fixed showstopper by eliminating the notification that was blocking testing (by getting triggered every frame on a failed media plugin load)
(transplanted from 01e271a99e0d975583d06f6c3af6b487e388ab70)
-rw-r--r-- | indra/newview/llviewermedia.cpp | 3 |
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; |