diff options
author | richard <none@none> | 2009-12-14 14:54:37 -0800 |
---|---|---|
committer | richard <none@none> | 2009-12-14 14:54:37 -0800 |
commit | 0d9bae83edc9b41ebfeffd947f9b149e3312fded (patch) | |
tree | 80960125fc0c0fccede8ab78215506758269e53e /indra/newview/lltoastpanel.cpp | |
parent | 4a2d57ad489344d77c2bc5213dad2c40c161a34e (diff) | |
parent | 861640adf90809131210175368850d0ccc1d669e (diff) |
merge
Diffstat (limited to 'indra/newview/lltoastpanel.cpp')
-rw-r--r-- | indra/newview/lltoastpanel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lltoastpanel.cpp b/indra/newview/lltoastpanel.cpp index afb9e261b0..755e647777 100644 --- a/indra/newview/lltoastpanel.cpp +++ b/indra/newview/lltoastpanel.cpp @@ -80,7 +80,7 @@ void LLToastPanel::snapToMessageHeight(LLTextBase* message, S32 maxLineCount) //Knowing the height is set to max allowed, getTextPixelHeight returns needed text height //Perhaps we need to pass maxLineCount as parameter to getTextPixelHeight to avoid previous reshape. - S32 requiredTextHeight = message->getContentsRect().getHeight(); + S32 requiredTextHeight = message->getTextBoundingRect().getHeight(); S32 newTextHeight = llmin(requiredTextHeight, maxTextHeight); //Calculate last delta height deducting previous heightDelta |