diff options
| author | Eugene Mutavchi <emutavchi@productengine.com> | 2010-02-04 20:40:30 +0200 | 
|---|---|---|
| committer | Eugene Mutavchi <emutavchi@productengine.com> | 2010-02-04 20:40:30 +0200 | 
| commit | 558cd44e6be87c661a873bb96918265282de361b (patch) | |
| tree | 692ece0831d712959de73fbe220767444053b690 | |
| parent | 3f0762f65ad8ba9d4f854378ca2d2dd826470f4e (diff) | |
Fixed low bug EXT-4184 (Fav bar: drop landmark pointer is visible badly)
--HG--
branch : product-engine
| -rw-r--r-- | indra/newview/llfavoritesbar.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/indra/newview/llfavoritesbar.cpp b/indra/newview/llfavoritesbar.cpp index 90f6438980..0f52b30567 100644 --- a/indra/newview/llfavoritesbar.cpp +++ b/indra/newview/llfavoritesbar.cpp @@ -628,8 +628,8 @@ void LLFavoritesBarCtrl::draw()  	if (mShowDragMarker)  	{ -		S32 w = mImageDragIndication->getWidth() / 2; -		S32 h = mImageDragIndication->getHeight() / 2; +		S32 w = mImageDragIndication->getWidth(); +		S32 h = mImageDragIndication->getHeight();  		if (mLandingTab)  		{ | 
