diff options
author | Merov Linden <merov@lindenlab.com> | 2012-01-20 17:03:04 -0800 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2012-01-20 17:03:04 -0800 |
commit | 6bbcf67db399a46592086c623118d18163a70452 (patch) | |
tree | 1fdcf54a0bbed06dcb0bf895680ae0a5540400ae /indra | |
parent | 5c8b24a0553699e83f405f1663d391bc7ed0d265 (diff) |
EXP-1152 : Fix width computation in inventory panel so that the horizontal slider shows up only when really needed.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llfolderviewitem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfolderviewitem.cpp b/indra/newview/llfolderviewitem.cpp index 8d6114c887..9944a9dd3d 100644 --- a/indra/newview/llfolderviewitem.cpp +++ b/indra/newview/llfolderviewitem.cpp @@ -423,7 +423,7 @@ S32 LLFolderViewItem::arrange( S32* width, S32* height, S32 filter_generation) : 0; if (mLabelWidthDirty) { - mLabelWidth = ARROW_SIZE + TEXT_PAD + ICON_WIDTH + ICON_PAD + getLabelFontForStyle(mLabelStyle)->getWidth(mSearchableLabel); + mLabelWidth = ARROW_SIZE + TEXT_PAD + ICON_WIDTH + ICON_PAD + getLabelFontForStyle(mLabelStyle)->getWidth(mLabel) + getLabelFontForStyle(mLabelStyle)->getWidth(mLabelSuffix); mLabelWidthDirty = false; } |