diff options
| author | Ychebotarev ProductEngine <ychebotarev@productengine.com> | 2010-02-01 17:23:25 +0200 | 
|---|---|---|
| committer | Ychebotarev ProductEngine <ychebotarev@productengine.com> | 2010-02-01 17:23:25 +0200 | 
| commit | c8621274eef9b4ef2a9a4bf2a3f338ddc141935a (patch) | |
| tree | 9e7fc5fcdc6b75e4e1ba68c70f0b0eb02db9488d | |
| parent | bf6d1713ec71ca88daf0f19c6d444b82ba2ccad2 (diff) | |
fix low EXT-3807 ABOUT LAND/OBJECTS: (i) icon is badly positioned
--HG--
branch : product-engine
| -rw-r--r-- | indra/newview/llnamelistctrl.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/newview/llnamelistctrl.cpp b/indra/newview/llnamelistctrl.cpp index 9f04558d50..8c875c9b63 100644 --- a/indra/newview/llnamelistctrl.cpp +++ b/indra/newview/llnamelistctrl.cpp @@ -162,7 +162,7 @@ BOOL LLNameListCtrl::handleToolTip(S32 x, S32 y, MASK mask)  				localRectToScreen(cell_rect, &sticky_rect);  				// Spawn at right side of cell -				LLCoordGL pos( sticky_rect.mRight - 16, sticky_rect.mTop ); +				LLCoordGL pos( sticky_rect.mRight - 16, sticky_rect.mTop + (sticky_rect.getHeight()-16)/2 );  				LLPointer<LLUIImage> icon = LLUI::getUIImage("Info_Small");  				// Should we show a group or an avatar inspector? | 
