diff options
| author | Yuri Chebotarev <ychebotarev@productengine.com> | 2010-06-02 18:23:06 +0300 | 
|---|---|---|
| committer | Yuri Chebotarev <ychebotarev@productengine.com> | 2010-06-02 18:23:06 +0300 | 
| commit | 129d504dd90c9819d6cc60f70f3bcbb1489f3ade (patch) | |
| tree | 7fcb664732d42c64425e5193f68f8de065968014 /indra | |
| parent | 0473ab08d81a7f5b87dfe02cbb95bd9863df1757 (diff) | |
EXT-7550 FIX fix floater height and minimap position right after start.
reviewed by Mike Antipov at https://codereview.productengine.com/secondlife/r/497/
--HG--
branch : product-engine
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llfloatermap.cpp | 13 | ||||
| -rw-r--r-- | indra/newview/llfloatermap.h | 2 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/floater_map.xml | 2 | 
3 files changed, 13 insertions, 4 deletions
| diff --git a/indra/newview/llfloatermap.cpp b/indra/newview/llfloatermap.cpp index 725fc17136..c259659083 100644 --- a/indra/newview/llfloatermap.cpp +++ b/indra/newview/llfloatermap.cpp @@ -106,6 +106,8 @@ BOOL LLFloaterMap::postBuild()  		mPopupMenu->setItemEnabled ("Stop Tracking", false);  	} +	stretchMiniMap(getRect().getWidth(),getRect().getHeight()); +  	updateMinorDirections();  	// Get the drag handle all the way in back @@ -229,10 +231,8 @@ void LLFloaterMap::onFocusLost()  	LLPanel::onFocusLost();  } -void LLFloaterMap::reshape(S32 width, S32 height, BOOL called_from_parent) +void LLFloaterMap::stretchMiniMap(S32 width,S32 height)  { -	LLFloater::reshape(width, height, called_from_parent); -	  	//fix for ext-7112  	//by default ctrl can't overlap caption area  	if(mMap) @@ -242,6 +242,13 @@ void LLFloaterMap::reshape(S32 width, S32 height, BOOL called_from_parent)  		mMap->reshape( width, height, 1);  		mMap->setRect(map_rect);  	} +} + +void LLFloaterMap::reshape(S32 width, S32 height, BOOL called_from_parent) +{ +	LLFloater::reshape(width, height, called_from_parent); +	 +	stretchMiniMap(width, height);  	updateMinorDirections();  } diff --git a/indra/newview/llfloatermap.h b/indra/newview/llfloatermap.h index 9ff2f03180..3c063adfb8 100644 --- a/indra/newview/llfloatermap.h +++ b/indra/newview/llfloatermap.h @@ -61,6 +61,8 @@ private:  	void handleStopTracking (const LLSD& userdata);  	void setDirectionPos( LLTextBox* text_box, F32 rotation );  	void updateMinorDirections(); + +	void stretchMiniMap(S32 width,S32 height);  	LLMenuGL*		mPopupMenu; diff --git a/indra/newview/skins/default/xui/en/floater_map.xml b/indra/newview/skins/default/xui/en/floater_map.xml index 249b091800..a0e28f7a42 100644 --- a/indra/newview/skins/default/xui/en/floater_map.xml +++ b/indra/newview/skins/default/xui/en/floater_map.xml @@ -5,7 +5,7 @@   can_minimize="true"    can_resize="true"   follows="top|right" - height="218" + height="174"   layout="topleft"   min_height="174"   min_width="174" | 
