diff options
| author | Paul ProductEngine <pguslisty@productengine.com> | 2011-04-11 18:07:24 +0300 | 
|---|---|---|
| committer | Paul ProductEngine <pguslisty@productengine.com> | 2011-04-11 18:07:24 +0300 | 
| commit | 0e8232790bf1e2f850f15670685811e40ea22d10 (patch) | |
| tree | 131bd92da36174021dfd13afadd6d5e3dc41924d | |
| parent | fa1827fa32f5dc046b17cde1ddbac8316f061793 (diff) | |
STORM-413 FIXED The presentation of IM sessions in message well depends on method that was used for opening IM window
- Replaced setRect method with setShape so that reshape and translate method be called
| -rw-r--r-- | indra/newview/llsyswellwindow.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/newview/llsyswellwindow.cpp b/indra/newview/llsyswellwindow.cpp index e7b5c13860..cb49976e5f 100644 --- a/indra/newview/llsyswellwindow.cpp +++ b/indra/newview/llsyswellwindow.cpp @@ -310,7 +310,7 @@ void LLIMWellWindow::RowPanel::onChicletSizeChanged(LLChiclet* ctrl, const LLSD&  	S32 new_text_left = mChiclet->getRect().mRight + CHICLET_HPAD;  	LLRect text_rect = text->getRect();   	text_rect.mLeft = new_text_left; -	text->setRect(text_rect); +	text->setShape(text_rect);  }  //--------------------------------------------------------------------------------- | 
