diff options
| author | RunitaiLinden <davep@lindenlab.com> | 2024-04-02 14:04:42 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-02 14:04:42 -0500 | 
| commit | 422ab40704cdbf36cd28fa0a78d5941c9456c1ad (patch) | |
| tree | 9055c7ef3f5144c695fce2cbe0240a1064fef99f /indra | |
| parent | e1e0b6fc5bb3eaa210fac24e2421fefbaeafe561 (diff) | |
https://github.com/secondlife/jira-archive-internal/issues/71062 Fix for avatar not responding to keyboard inputs when not visible (#1113)
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llvoavatar.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index 35e45c6cd9..aae13e3327 100644 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -4681,7 +4681,7 @@ bool LLVOAvatar::updateCharacter(LLAgent &agent)  	mSpeed = speed;  	// update animations -	if (!visible) +	if (!visible && !isSelf()) // NOTE: never do a "hidden update" for self avatar as it interrupts controller processing  	{  		updateMotions(LLCharacter::HIDDEN_UPDATE);  	}  | 
