diff options
| author | AndreyL ProductEngine <alihatskiy@productengine.com> | 2016-04-06 01:34:21 +0300 | 
|---|---|---|
| committer | AndreyL ProductEngine <alihatskiy@productengine.com> | 2016-04-06 01:34:21 +0300 | 
| commit | afcea0b8dc6ad6729ce18f4e051b230d17b98c09 (patch) | |
| tree | 610c22a1bbc116acaa88e68910d6e67b26441785 /indra | |
| parent | 2907cfa6f18aa9188be6e3d71f413fc97c0b3c77 (diff) | |
MAINT-6304 FIXED Push-to-talk triggered with keyboard doesn't close the mic
Diffstat (limited to 'indra')
| -rwxr-xr-x | indra/newview/llvoiceclient.cpp | 18 | 
1 files changed, 12 insertions, 6 deletions
diff --git a/indra/newview/llvoiceclient.cpp b/indra/newview/llvoiceclient.cpp index 56c0910983..5c125a236a 100755 --- a/indra/newview/llvoiceclient.cpp +++ b/indra/newview/llvoiceclient.cpp @@ -657,19 +657,25 @@ void LLVoiceClient::keyDown(KEY key, MASK mask)  		return;  	} -	if(!mPTTIsMiddleMouse && LLAgent::isActionAllowed("speak")) +	if (!mPTTIsMiddleMouse && LLAgent::isActionAllowed("speak") && (key == mPTTKey))  	{ -		bool down = (mPTTKey != KEY_NONE) && gKeyboard->getKeyDown(mPTTKey); -		if (down) { inputUserControlState(down); } +		bool down = gKeyboard->getKeyDown(mPTTKey); +		if (down) +		{ +			inputUserControlState(down); +		}  	}  }  void LLVoiceClient::keyUp(KEY key, MASK mask)  { -	if(!mPTTIsMiddleMouse) +	if (!mPTTIsMiddleMouse && (key == mPTTKey))  	{ -		bool down = (mPTTKey != KEY_NONE) && gKeyboard->getKeyDown(mPTTKey); -		if (down) { inputUserControlState(down); } +		bool down = gKeyboard->getKeyDown(mPTTKey); +		if (!down) +		{ +			inputUserControlState(down); +		}  	}  }  void LLVoiceClient::middleMouseState(bool down)  | 
