summaryrefslogtreecommitdiff
path: root/indra/llui/llscrolllistctrl.cpp
diff options
context:
space:
mode:
authorYchebotarev ProductEngine <ychebotarev@productengine.com>2010-01-28 11:32:02 +0200
committerYchebotarev ProductEngine <ychebotarev@productengine.com>2010-01-28 11:32:02 +0200
commit03861037aff2c22a544fb0055ecb52156fb48bc6 (patch)
treef1f84b58367ce940af79720e880985c9d6aacb82 /indra/llui/llscrolllistctrl.cpp
parent330f1f472733d1ac87f295fc9d4c534991227f67 (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.cpp2
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;
}