diff options
| author | Sergei Litovchuk <slitovchuk@productengine.com> | 2010-01-05 13:28:34 +0200 | 
|---|---|---|
| committer | Sergei Litovchuk <slitovchuk@productengine.com> | 2010-01-05 13:28:34 +0200 | 
| commit | 5043fcce370fd21e9709f94787191a060919cc2b (patch) | |
| tree | 7c2260aa680316727f8ea5d89cc35cdd7b07e2d9 | |
| parent | ddf2cccdb926ca2aac226a90c4030f2d4e8c6f50 (diff) | |
Fixed major bug (EXT-3896) Favorites bar consists of overflow button only
- Removed extra attributes from favorites_bar_button.xml.
- Changed warning message about favorites bar button creation failure.
--HG--
branch : product-engine
| -rw-r--r-- | indra/newview/llfavoritesbar.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/favorites_bar_button.xml | 2 | 
2 files changed, 1 insertions, 3 deletions
| diff --git a/indra/newview/llfavoritesbar.cpp b/indra/newview/llfavoritesbar.cpp index 6ae6b4877a..4103ccf175 100644 --- a/indra/newview/llfavoritesbar.cpp +++ b/indra/newview/llfavoritesbar.cpp @@ -644,7 +644,7 @@ LLXMLNodePtr LLFavoritesBarCtrl::getButtonXMLNode()  	bool success = LLUICtrlFactory::getLayeredXMLNode("favorites_bar_button.xml", buttonXMLNode);  	if (!success)  	{ -		llwarns << "Unable to read xml file with button for Favorites Bar: favorites_bar_button.xml" << llendl; +		llwarns << "Failed to create Favorites Bar button from favorites_bar_button.xml" << llendl;  		buttonXMLNode = NULL;  	}  	return buttonXMLNode; diff --git a/indra/newview/skins/default/xui/en/favorites_bar_button.xml b/indra/newview/skins/default/xui/en/favorites_bar_button.xml index 90105f92fd..dcf9847adb 100644 --- a/indra/newview/skins/default/xui/en/favorites_bar_button.xml +++ b/indra/newview/skins/default/xui/en/favorites_bar_button.xml @@ -23,8 +23,6 @@   pad_left="11"   pad_right="7"   tab_stop="false" - pad_right="10" - pad_left="10"    top="0"   use_ellipses="true"   width="140" /> | 
