diff options
author | richard <none@none> | 2009-11-25 18:24:39 -0800 |
---|---|---|
committer | richard <none@none> | 2009-11-25 18:24:39 -0800 |
commit | cdb223228479e97d9cfe7d80d0afef0d99179d24 (patch) | |
tree | 210d1bed1a0bb716ad919d516a66a4170f6bcdd4 /indra/newview/llchiclet.cpp | |
parent | 52a387e00f963d9920f36ffc0dcc855889f36cad (diff) |
created container for LLFloaterView for future z-swapping with sidetray
floaters can now overlap sidetray
fixed text selection background color to be inverse of text fg color
EXT-2713 Script editor automatically scrolls to the top of script text when text is longer than the window.
reviewed by James
Diffstat (limited to 'indra/newview/llchiclet.cpp')
-rw-r--r-- | indra/newview/llchiclet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llchiclet.cpp b/indra/newview/llchiclet.cpp index f41e326dd0..9aef02c5c8 100644 --- a/indra/newview/llchiclet.cpp +++ b/indra/newview/llchiclet.cpp @@ -1362,7 +1362,7 @@ void LLChicletNotificationCounterCtrl::setCounter(S32 counter) LLRect LLChicletNotificationCounterCtrl::getRequiredRect() { LLRect rc; - S32 text_width = getContentsRect().getWidth(); + S32 text_width = getTextPixelWidth(); rc.mRight = rc.mLeft + llmax(text_width, mInitialWidth); |