diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2020-08-21 00:21:46 +0300 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2020-08-21 13:40:36 +0300 |
commit | f72b5b8fd829a266316de743432545430810affb (patch) | |
tree | d9de722ad603d631d0b0d2ed7baa8c0e2df177aa | |
parent | e4350fb9ef1a44416f0ef7873595db41b05dafc4 (diff) |
SL-13828 Fixed the Media URL editing on the media prim
-rw-r--r-- | indra/newview/llpanelprimmediacontrols.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llpanelprimmediacontrols.cpp b/indra/newview/llpanelprimmediacontrols.cpp index 67cd23d2ee..2bd78f40ba 100644 --- a/indra/newview/llpanelprimmediacontrols.cpp +++ b/indra/newview/llpanelprimmediacontrols.cpp @@ -258,7 +258,7 @@ void LLPanelPrimMediaControls::focusOnTarget() LLViewerMediaImpl* media_impl = getTargetMediaImpl(); if(media_impl) { - if (!media_impl->hasFocus() || isZoomDistExceeding()) + if (!media_impl->hasFocus()) { // The current target doesn't have media focus -- focus on it. LLViewerObject* objectp = getTargetObject(); |