diff options
| -rw-r--r-- | indra/llui/lltoolbar.cpp | 7 | 
1 files changed, 5 insertions, 2 deletions
diff --git a/indra/llui/lltoolbar.cpp b/indra/llui/lltoolbar.cpp index ea11750e38..19dc688504 100644 --- a/indra/llui/lltoolbar.cpp +++ b/indra/llui/lltoolbar.cpp @@ -243,13 +243,16 @@ bool LLToolBar::addCommand(const LLCommandId& commandId, int rank)  		mButtons.insert(it_button,button);  	} +	mNeedsLayout = true; + +	updateLayoutAsNeeded(); + +  	if (mButtonAddSignal)  	{  		(*mButtonAddSignal)(button);  	} -	mNeedsLayout = true; -  	return true;  }  | 
