diff options
| -rw-r--r-- | indra/newview/llfacebookconnect.cpp | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llfacebookconnect.cpp b/indra/newview/llfacebookconnect.cpp index 645f62579d..ad776b2d1a 100644 --- a/indra/newview/llfacebookconnect.cpp +++ b/indra/newview/llfacebookconnect.cpp @@ -334,7 +334,10 @@ void LLFacebookConnect::openFacebookWeb(std::string url)      p.url(url).allow_back_forward_navigation(false);      p.url(url).trusted_content(true);  	LLFloater *floater = LLFloaterReg::showInstance("fbc_web", p); -	//TODO Gil: Hack to give the focus to the web browser to show cursor, will fix +	//the internal web browser has a bug that prevents it from gaining focus unless a mouse event occurs first (it seems). +	//So when showing the internal web browser, set focus to it's containing floater "fbc_web". When a mouse event  +	//occurs on the "webbrowser" panel part of the floater, a mouse cursor will properly show and the "webbrowser" will gain focus. +	//fbc_web floater contains the "webbrowser" panel.    JIRA: ACME-744  	gFocusMgr.setKeyboardFocus( floater );  	//LLUrlAction::openURLExternal(url);  | 
