diff options
| author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2022-03-29 18:07:06 +0300 | 
|---|---|---|
| committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2022-03-29 18:07:06 +0300 | 
| commit | d97105663f1b63feda1f56b9b3cf908c64135693 (patch) | |
| tree | e705cc9b24789de234b03b299e8e47a5347ddf47 /indra/newview | |
| parent | 9e2f571687e0b415664936c2998578cedd3df38b (diff) | |
SL-17091 FIXED Walk/Run/Fly buttons are not clickable
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llfloaterworldmap.cpp | 4 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/panel_hide_beacon.xml | 2 | 
2 files changed, 4 insertions, 2 deletions
| diff --git a/indra/newview/llfloaterworldmap.cpp b/indra/newview/llfloaterworldmap.cpp index 3ec1e17bd8..2c84cd1f93 100644 --- a/indra/newview/llfloaterworldmap.cpp +++ b/indra/newview/llfloaterworldmap.cpp @@ -1689,8 +1689,10 @@ void LLPanelHideBeacon::draw()  {  	if (!LLTracker::isTracking(NULL))  	{ -		return; +        mHideButton->setVisible(false); +        return;  	} +    mHideButton->setVisible(true);  	updatePosition();   	LLPanel::draw();  } diff --git a/indra/newview/skins/default/xui/en/panel_hide_beacon.xml b/indra/newview/skins/default/xui/en/panel_hide_beacon.xml index cb22719cef..7cab285f77 100644 --- a/indra/newview/skins/default/xui/en/panel_hide_beacon.xml +++ b/indra/newview/skins/default/xui/en/panel_hide_beacon.xml @@ -15,6 +15,6 @@       name="hide_beacon_btn"       tool_tip="Stop tracking and hide beacon"       top="2" -     visible="true" +     visible="false"       width="113" />  </panel> | 
