diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-08-05 12:39:08 +0100 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-08-05 12:39:08 +0100 |
commit | eef6ababcdd9ae4c9cbdc5dc295420fa66e753ab (patch) | |
tree | 05ace450df0d21f24d2f9816f8f64059b3044c02 /indra/newview | |
parent | 057568bddc178546c112d8223042a0ed2378ab8b (diff) | |
parent | 7253c7eeb156f9f6cd75f52b0df856ec8ef165fb (diff) |
merge from PE's viewer-release
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llinventorylistitem.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/indra/newview/llinventorylistitem.cpp b/indra/newview/llinventorylistitem.cpp index e4a7a158a3..2546390fcb 100644 --- a/indra/newview/llinventorylistitem.cpp +++ b/indra/newview/llinventorylistitem.cpp @@ -96,9 +96,12 @@ void LLPanelInventoryListItemBase::draw() if (mSeparatorVisible && mSeparatorImage) { - // stretch along bottom of listitem, using image height + // place under bottom of listitem, using image height + // item_pad in list using the item should be >= image height + // to avoid cropping of top of the next item. LLRect separator_rect = getLocalRect(); - separator_rect.mTop = mSeparatorImage->getHeight(); + separator_rect.mTop = separator_rect.mBottom; + separator_rect.mBottom -= mSeparatorImage->getHeight(); mSeparatorImage->draw(separator_rect); } |