diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2020-05-19 12:10:39 +0300 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2020-05-19 12:10:39 +0300 |
commit | d9cdef171a4e33da2d24508a222cb2ae0d32610a (patch) | |
tree | 249a723dc59441dff34360516c47d17af34ecb7a | |
parent | 510574dc1416b02d6f045feda2555f87e99d1c0c (diff) |
SL-12904 Restored the missing code (post-merge)
-rw-r--r-- | indra/newview/llviewerinput.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llviewerinput.cpp b/indra/newview/llviewerinput.cpp index 7a2f5ed7b3..ad4b9d4215 100644 --- a/indra/newview/llviewerinput.cpp +++ b/indra/newview/llviewerinput.cpp @@ -364,6 +364,7 @@ bool camera_spin_around_ccw_sitting( EKeystate s ) else { //change camera but do not send keystrokes + gAgentCamera.unlockView(); gAgentCamera.setOrbitLeftKey( get_orbit_rate() ); } return true; @@ -381,6 +382,7 @@ bool camera_spin_around_cw_sitting( EKeystate s ) else { //change camera but do not send keystrokes + gAgentCamera.unlockView(); gAgentCamera.setOrbitRightKey( get_orbit_rate() ); } return true; |