diff options
| author | Richard Linden <none@none> | 2011-03-24 19:37:00 -0700 |
|---|---|---|
| committer | Richard Linden <none@none> | 2011-03-24 19:37:00 -0700 |
| commit | a5572505d843778b7f5395e25f9b9d15178bb423 (patch) | |
| tree | 4bd6108a9ac44fbe3343f9bba29745e7c8905496 /indra/newview/llviewermedia.cpp | |
| parent | 4af93641973c4ee8805e948ad04d7be306a38835 (diff) | |
SOCIAL-509 FIX There is no way to copy a user name from web profile with the mouse
Diffstat (limited to 'indra/newview/llviewermedia.cpp')
| -rw-r--r-- | indra/newview/llviewermedia.cpp | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/indra/newview/llviewermedia.cpp b/indra/newview/llviewermedia.cpp index 499165135a..c2d630ece2 100644 --- a/indra/newview/llviewermedia.cpp +++ b/indra/newview/llviewermedia.cpp @@ -2543,23 +2543,7 @@ bool LLViewerMediaImpl::handleKeyHere(KEY key, MASK mask) // 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( 'C' == key ) - { - mMediaSource->copy(); - result = true; - } - else - if( 'V' == key ) - { - mMediaSource->paste(); - result = true; - } - else - if( 'X' == key ) - { - mMediaSource->cut(); - result = true; - } + result = true; } if(!result) |
