diff options
author | Dessie Linden <dessie@lindenlab.com> | 2010-06-04 08:55:51 -0700 |
---|---|---|
committer | Dessie Linden <dessie@lindenlab.com> | 2010-06-04 08:55:51 -0700 |
commit | 44ac5dc9377915d5d1a31dc3d52423d07b4d7f02 (patch) | |
tree | e072bd5813671f68b0cbf826ca2936ed3a2b63c0 /indra/newview/llcofwearables.cpp | |
parent | f968b6078ba764f9c9ed24be23424b59633cff71 (diff) | |
parent | 15b855409a0ae7588236fe43f4aaa1d5d389b005 (diff) |
Merged from viewer-public
Diffstat (limited to 'indra/newview/llcofwearables.cpp')
-rw-r--r-- | indra/newview/llcofwearables.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/indra/newview/llcofwearables.cpp b/indra/newview/llcofwearables.cpp index 79ce2f8f6b..7ac3d14c72 100644 --- a/indra/newview/llcofwearables.cpp +++ b/indra/newview/llcofwearables.cpp @@ -387,7 +387,13 @@ LLPanelClothingListItem* LLCOFWearables::buildClothingListItem(LLViewerInventory item_panel->childSetAction("btn_edit", mCOFCallbacks.mEditWearable); //turning on gray separator line for the last item in the items group of the same wearable type - item_panel->childSetVisible("wearable_type_separator_panel", last); + if (last) + { + LLRect rect = item_panel->getRect(); + item_panel->reshape(rect.getWidth(), rect.getHeight() + + item_panel->getChild<LLView>("wearable_type_separator_icon")->getRect().getHeight()); + item_panel->childSetVisible("wearable_type_separator_icon", true); + } return item_panel; } |