summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Mutavchi <emutavchi@productengine.com>2010-01-20 21:27:02 +0200
committerEugene Mutavchi <emutavchi@productengine.com>2010-01-20 21:27:02 +0200
commit7ea1707c6afb2d7d51309dd253303c4cbbb9bf5c (patch)
treede77fe33f46a5e7285ee25b424cad7164539e1f2
parent8d80ba856df7f5bc657db28db15cc193bcb89c27 (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.cpp2
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;
}