diff options
| author | Vadim ProductEngine <vsavchuk@productengine.com> | 2011-01-11 18:55:22 +0200 | 
|---|---|---|
| committer | Vadim ProductEngine <vsavchuk@productengine.com> | 2011-01-11 18:55:22 +0200 | 
| commit | e3e1d9b4c3446ea87d1938d1cb0c4a5a9e5d448d (patch) | |
| tree | 1fd876c550e84fb39c23caca59f2833c977b536e /indra | |
| parent | 964e981458234aed37252a7b484f6f6765fff50d (diff) | |
STORM-715 FIXED Don't expand default ("Clothing") accordion tab when docking/undocking the Appearance SP.
There is a side effect: we don't reset the accordion when switching between sidepanels anymore.
But I guess it's ok because other sidepanels (People, Me) don't reset their state either
(e.g. if you open a group profile, then switch to My Inventory, then back to People,
the group profile will still be opened).
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llsidepanelappearance.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llsidepanelappearance.cpp b/indra/newview/llsidepanelappearance.cpp index b316171604..363fe5f12b 100644 --- a/indra/newview/llsidepanelappearance.cpp +++ b/indra/newview/llsidepanelappearance.cpp @@ -185,7 +185,7 @@ void LLSidepanelAppearance::onVisibilityChange(const LLSD &new_visibility)  {  	LLSD visibility;  	visibility["visible"] = new_visibility.asBoolean(); -	visibility["reset_accordion"] = true; +	visibility["reset_accordion"] = false;  	updateToVisibility(visibility);  }  | 
