diff options
| author | Paul Guslisty <pguslisty@productengine.com> | 2009-12-14 20:06:34 +0200 | 
|---|---|---|
| committer | Paul Guslisty <pguslisty@productengine.com> | 2009-12-14 20:06:34 +0200 | 
| commit | 249ff4c81ba18b0a24315f543ba84a587868a452 (patch) | |
| tree | 5af690553b04f3abe6d84bf97282b3665c691da4 | |
| parent | fe0da9bf7b81d24a9614f95d9f91012796eabf77 (diff) | |
Fixed low bug EXT - 3929 ('Home' tongue in the Side tray doesn't have a tool tip)
--HG--
branch : product-engine
| -rw-r--r-- | indra/newview/llsidetray.cpp | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/indra/newview/llsidetray.cpp b/indra/newview/llsidetray.cpp index a1af2e5411..608165022f 100644 --- a/indra/newview/llsidetray.cpp +++ b/indra/newview/llsidetray.cpp @@ -354,8 +354,7 @@ LLButton* LLSideTray::createButton	(const std::string& name,const std::string& i  	button->setLabel(name);  	button->setClickedCallback(callback); -	if(tooltip!="Home") -		button->setToolTip(tooltip); +	button->setToolTip(tooltip);  	if(image.length())  	{ | 
