diff options
author | Eugene Mutavchi <emutavchi@productengine.com> | 2010-01-20 21:27:02 +0200 |
---|---|---|
committer | Eugene Mutavchi <emutavchi@productengine.com> | 2010-01-20 21:27:02 +0200 |
commit | 7ea1707c6afb2d7d51309dd253303c4cbbb9bf5c (patch) | |
tree | de77fe33f46a5e7285ee25b424cad7164539e1f2 | |
parent | 8d80ba856df7f5bc657db28db15cc193bcb89c27 (diff) |
Fixed low bug EXT-4526 (State of Teleport History accordion is reset every time panel is opened)
--HG--
branch : product-engine
-rw-r--r-- | indra/newview/llpanelteleporthistory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llpanelteleporthistory.cpp b/indra/newview/llpanelteleporthistory.cpp index 571745ee02..1b8fb49641 100644 --- a/indra/newview/llpanelteleporthistory.cpp +++ b/indra/newview/llpanelteleporthistory.cpp @@ -1036,7 +1036,7 @@ void LLTeleportHistoryPanel::setAccordionCollapsedByUser(LLUICtrl* acc_tab, bool bool LLTeleportHistoryPanel::isAccordionCollapsedByUser(LLUICtrl* acc_tab) { LLSD param = acc_tab->getValue(); - if(!param.has("acc_collapsed")) + if(!param.has(COLLAPSED_BY_USER)) { return false; } |