diff options
author | andreykproductengine <akleshchev@productengine.com> | 2014-09-26 18:03:50 +0300 |
---|---|---|
committer | andreykproductengine <akleshchev@productengine.com> | 2014-09-26 18:03:50 +0300 |
commit | e0efa75ab799b41612c3c87874dff8ea38737a92 (patch) | |
tree | 9d8d5ddff785128cd165c6e98304483e7f428ac4 /indra/newview/llviewermedia.cpp | |
parent | d4dee3fafc38c9af43be485adf5acd8ea9227b4c (diff) |
MAINT-3788 FIXED [Profile Notes] CTRL+cursor (e.g. CTRL+LEFT ARROW) doesn't work in the profile notes editor.
Left, Right, Home, End now work in profile notes.
Diffstat (limited to 'indra/newview/llviewermedia.cpp')
-rwxr-xr-x | indra/newview/llviewermedia.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewermedia.cpp b/indra/newview/llviewermedia.cpp index 8499012cfc..721ee1f0f5 100755 --- a/indra/newview/llviewermedia.cpp +++ b/indra/newview/llviewermedia.cpp @@ -2703,7 +2703,7 @@ bool LLViewerMediaImpl::handleKeyHere(KEY key, MASK mask) { // FIXME: THIS IS SO WRONG. // Menu keys should be handled by the menu system and not passed to UI elements, but this is how LLTextEditor and LLLineEditor do it... - if( MASK_CONTROL & mask ) + if( MASK_CONTROL & mask && key != KEY_LEFT && key != KEY_RIGHT && key != KEY_HOME && key != KEY_END) { result = true; } |