diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llviewerkeyboard.cpp | 8 | 
1 files changed, 2 insertions, 6 deletions
| diff --git a/indra/newview/llviewerkeyboard.cpp b/indra/newview/llviewerkeyboard.cpp index 623d128f87..f757155b94 100644 --- a/indra/newview/llviewerkeyboard.cpp +++ b/indra/newview/llviewerkeyboard.cpp @@ -538,13 +538,9 @@ void start_chat( EKeystate s )  void start_gesture( EKeystate s )  { -	LLUICtrl* focus_ctrlp = NULL; -	if(gFocusMgr.getKeyboardFocus()) -	{ -		focus_ctrlp = dynamic_cast<LLUICtrl*>(gFocusMgr.getKeyboardFocus()); -	} +	LLUICtrl* focus_ctrlp = dynamic_cast<LLUICtrl*>(gFocusMgr.getKeyboardFocus());  	if (KEYSTATE_UP == s && -		!(gFocusMgr.getKeyboardFocus() && focus_ctrlp && focus_ctrlp->acceptsTextInput())) +		! (focus_ctrlp && focus_ctrlp->acceptsTextInput()))  	{   		if (LLNearbyChatBar::getInstance()->getCurrentChat().empty())   		{ | 
