diff options
author | Ychebotarev ProductEngine <ychebotarev@productengine.com> | 2010-01-28 11:32:02 +0200 |
---|---|---|
committer | Ychebotarev ProductEngine <ychebotarev@productengine.com> | 2010-01-28 11:32:02 +0200 |
commit | 03861037aff2c22a544fb0055ecb52156fb48bc6 (patch) | |
tree | f1f84b58367ce940af79720e880985c9d6aacb82 /indra/llui/llscrolllistctrl.cpp | |
parent | 330f1f472733d1ac87f295fc9d4c534991227f67 (diff) |
fix for normal EXT-3807 ABOUT LAND/OBJECTS: (i) icon is badly positioned
now I wonder how was this working before...
--HG--
branch : product-engine
Diffstat (limited to 'indra/llui/llscrolllistctrl.cpp')
-rw-r--r-- | indra/llui/llscrolllistctrl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llscrolllistctrl.cpp b/indra/llui/llscrolllistctrl.cpp index 78386220d9..478e270c98 100644 --- a/indra/llui/llscrolllistctrl.cpp +++ b/indra/llui/llscrolllistctrl.cpp @@ -1534,7 +1534,7 @@ LLRect LLScrollListCtrl::getCellRect(S32 row_index, S32 column_index) S32 rect_bottom = getRowOffsetFromIndex(row_index); LLScrollListColumn* columnp = getColumn(column_index); cell_rect.setOriginAndSize(rect_left, rect_bottom, - rect_left + columnp->getWidth(), mLineHeight); + /*rect_left + */columnp->getWidth(), mLineHeight); return cell_rect; } |