From c7e9bbc20e2c08976cdb72a877d7d41a2546f418 Mon Sep 17 00:00:00 2001 From: maxim_productengine Date: Tue, 24 Sep 2019 16:37:15 +0300 Subject: SL-11957 FIXED The Mini-inspector changes position when clicking on the 'View full profile' link --- indra/newview/llinspect.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'indra/newview/llinspect.cpp') diff --git a/indra/newview/llinspect.cpp b/indra/newview/llinspect.cpp index e6cb068613..4e20c02767 100644 --- a/indra/newview/llinspect.cpp +++ b/indra/newview/llinspect.cpp @@ -147,3 +147,19 @@ bool LLInspect::childHasVisiblePopupMenu() } return false; } + +void LLInspect::repositionInspector(const LLSD& data) +{ + // Position the inspector relative to the mouse cursor + // Similar to how tooltips are positioned + // See LLToolTipMgr::createToolTip + if (data.has("pos")) + { + LLUI::positionViewNearMouse(this, data["pos"]["x"].asInteger(), data["pos"]["y"].asInteger()); + } + else + { + LLUI::positionViewNearMouse(this); + } + applyRectControl(); +} -- cgit v1.2.3