summaryrefslogtreecommitdiff
path: root/indra/newview/llinspect.cpp
diff options
context:
space:
mode:
authormaxim_productengine <mnikolenko@productengine.com>2019-09-24 16:37:15 +0300
committermaxim_productengine <mnikolenko@productengine.com>2019-09-24 16:37:15 +0300
commitc7e9bbc20e2c08976cdb72a877d7d41a2546f418 (patch)
treeeac38d7184d7253332b5b1c54ed760b063750e3d /indra/newview/llinspect.cpp
parent6ef78777660460f994713e596a31f29b62678170 (diff)
SL-11957 FIXED The Mini-inspector changes position when clicking on the 'View full profile' link
Diffstat (limited to 'indra/newview/llinspect.cpp')
-rw-r--r--indra/newview/llinspect.cpp16
1 files changed, 16 insertions, 0 deletions
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();
+}