Fix getChild calls during draw from LLFloaterIMSessionTab
parent
2d595bd00c
commit
b5491416a0
|
|
@ -262,6 +262,7 @@ bool LLFloaterIMSessionTab::postBuild()
|
|||
{
|
||||
bool result;
|
||||
|
||||
mContentsView = getChild<LLView>("contents_view");
|
||||
mBodyStack = getChild<LLLayoutStack>("main_stack");
|
||||
mParticipantListAndHistoryStack = getChild<LLLayoutStack>("im_panels");
|
||||
|
||||
|
|
@ -861,7 +862,6 @@ void LLFloaterIMSessionTab::hideOrShowTitle()
|
|||
{
|
||||
const LLFloater::Params& default_params = LLFloater::getDefaultParams();
|
||||
S32 floater_header_size = default_params.header_height;
|
||||
LLView* floater_contents = getChild<LLView>("contents_view");
|
||||
|
||||
LLRect floater_rect = getLocalRect();
|
||||
S32 top_border_of_contents = floater_rect.mTop - (isTornOff()? floater_header_size : 0);
|
||||
|
|
@ -869,7 +869,7 @@ void LLFloaterIMSessionTab::hideOrShowTitle()
|
|||
LLRect contents_rect (0, top_border_of_contents, floater_rect.mRight, floater_rect.mBottom);
|
||||
mDragHandle->setShape(handle_rect);
|
||||
mDragHandle->setVisible(isTornOff());
|
||||
floater_contents->setShape(contents_rect);
|
||||
mContentsView->setShape(contents_rect);
|
||||
}
|
||||
|
||||
void LLFloaterIMSessionTab::updateSessionName(const std::string& name)
|
||||
|
|
|
|||
|
|
@ -164,6 +164,7 @@ protected:
|
|||
LLConversationViewParticipant* createConversationViewParticipant(LLConversationItem* item);
|
||||
|
||||
LLUUID mSessionID;
|
||||
LLView* mContentsView;
|
||||
LLLayoutStack* mBodyStack;
|
||||
LLLayoutStack* mParticipantListAndHistoryStack;
|
||||
LLLayoutPanel* mParticipantListPanel; // add the widgets to that see mConversationsListPanel
|
||||
|
|
|
|||
Loading…
Reference in New Issue