Add some spacing at the right side to the inventory list item panel

Ansariel 2018-01-22 12:48:01 +01:00
parent 82846a5f14
commit 7f5e421a44
1 changed files with 4 additions and 1 deletions

View File

@ -426,7 +426,10 @@ void LLPanelInventoryListItemBase::reshapeLeftWidgets()
void LLPanelInventoryListItemBase::reshapeRightWidgets()
{
S32 widget_right = getLocalRect().getWidth();
// <FS:Ansariel> Add some spacing at the right side
//S32 widget_right = getLocalRect().getWidth();
S32 widget_right = getLocalRect().getWidth() - getWidgetSpacing();
// </FS:Ansariel>
S32 widget_left = widget_right;
widget_array_t::const_reverse_iterator it = mRightSideWidgets.rbegin();