diff options
| author | Alexander Gavriliuk <alexandrgproductengine@lindenlab.com> | 2023-03-19 05:07:44 +0100 |
|---|---|---|
| committer | Alexander Gavriliuk <alexandrgproductengine@lindenlab.com> | 2023-03-19 05:08:04 +0100 |
| commit | f5adfae1ade864d80f630855bc65bf65f5ae7ece (patch) | |
| tree | c0345967c74f6aeeb0876cb7cee908afc1863336 /indra/llui/llfolderviewitem.cpp | |
| parent | d2a8a3bd53f011b7137717ece39f01b5242bb45a (diff) | |
SL-19099 The long name of the item is out of bounds on the Editing Tools/Content tab
Diffstat (limited to 'indra/llui/llfolderviewitem.cpp')
| -rw-r--r-- | indra/llui/llfolderviewitem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llfolderviewitem.cpp b/indra/llui/llfolderviewitem.cpp index eba93beed9..e2b5279aab 100644 --- a/indra/llui/llfolderviewitem.cpp +++ b/indra/llui/llfolderviewitem.cpp @@ -395,7 +395,7 @@ S32 LLFolderViewItem::arrange( S32* width, S32* height ) // it is purely visual, so it is fine to do at our laisure refreshSuffix(); } - mLabelWidth = getLabelXPos() + getLabelFontForStyle(mLabelStyle)->getWidth(mLabel) + getLabelFontForStyle(mLabelStyle)->getWidth(mLabelSuffix) + mLabelPaddingRight; + mLabelWidth = getLabelXPos() + getLabelFontForStyle(mLabelStyle)->getWidth(mLabel) + getLabelFontForStyle(mLabelStyle)->getWidth(mLabelSuffix) + mLabelPaddingRight; mLabelWidthDirty = false; } |
