diff options
author | richard <none@none> | 2009-10-26 14:25:45 -0700 |
---|---|---|
committer | richard <none@none> | 2009-10-26 14:25:45 -0700 |
commit | 977dd845346cae05eab2249945f083df47552c8f (patch) | |
tree | 2702cd5ea55ddb8a5492a88869ffdecadec5655e /indra/llui/llscrollcontainer.cpp | |
parent | f31b0baff45fa32fb26ec96eb1a34f7debd7ef3e (diff) |
tweaked clipping rect for scroll containers to not overlap vertical scrollbar
fixed reflow logic when resizing text editors that contain widgets (would make text appear and disappear)
reviewed by James
Diffstat (limited to 'indra/llui/llscrollcontainer.cpp')
-rw-r--r-- | indra/llui/llscrollcontainer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llscrollcontainer.cpp b/indra/llui/llscrollcontainer.cpp index d8606c6889..5e17372fe9 100644 --- a/indra/llui/llscrollcontainer.cpp +++ b/indra/llui/llscrollcontainer.cpp @@ -432,7 +432,7 @@ void LLScrollContainer::draw() LLLocalClipRect clip(LLRect(mInnerRect.mLeft, mInnerRect.mBottom + (show_h_scrollbar ? scrollbar_size : 0) + visible_height, - visible_width, + mInnerRect.mRight - (show_v_scrollbar ? scrollbar_size: 0), mInnerRect.mBottom + (show_h_scrollbar ? scrollbar_size : 0) )); drawChild(mScrolledView); |