Skip to content
Snippets Groups Projects
Commit 8d0f7fe5 authored by Cho's avatar Cho
Browse files

Hack to fix ACME-1317

parent 413be91c
No related branches found
No related tags found
No related merge requests found
...@@ -372,7 +372,10 @@ void LLFloaterWebContent::handleMediaEvent(LLPluginClassMedia* self, EMediaEvent ...@@ -372,7 +372,10 @@ void LLFloaterWebContent::handleMediaEvent(LLPluginClassMedia* self, EMediaEvent
} }
else if(event == MEDIA_EVENT_GEOMETRY_CHANGE) else if(event == MEDIA_EVENT_GEOMETRY_CHANGE)
{ {
geometryChanged(self->getGeometryX(), self->getGeometryY(), self->getGeometryWidth(), self->getGeometryHeight()); if (mCurrentURL.find("facebook.com/dialog/oauth") == std::string::npos) // HACK to fix ACME-1317 - Cho
{
geometryChanged(self->getGeometryX(), self->getGeometryY(), self->getGeometryWidth(), self->getGeometryHeight());
}
} }
else if(event == MEDIA_EVENT_STATUS_TEXT_CHANGED ) else if(event == MEDIA_EVENT_STATUS_TEXT_CHANGED )
{ {
......
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