summaryrefslogtreecommitdiff
path: root/indra/llxml
diff options
context:
space:
mode:
authorRider Linden <rider@lindenlab.com>2018-05-31 11:49:27 -0700
committerRider Linden <rider@lindenlab.com>2018-05-31 11:49:27 -0700
commitbd84cbfa11fbe2b3aa5ceba5978841310488b8e4 (patch)
treecd4ddab644af5f7a560a4ee53db9d36033e8e0ad /indra/llxml
parent460d944b082ae73bbad3cf1d72a47ffa88970fb9 (diff)
parent40d4e8b2e6d25a625c7a5ef5dd3e94321d18ce82 (diff)
Merge
Diffstat (limited to 'indra/llxml')
-rw-r--r--indra/llxml/llcontrol.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llxml/llcontrol.h b/indra/llxml/llcontrol.h
index 77065dcf8d..8136a3e88a 100644
--- a/indra/llxml/llcontrol.h
+++ b/indra/llxml/llcontrol.h
@@ -357,7 +357,8 @@ private:
mCachedValue = convert_from_llsd<T>(controlp->get(), mType, name);
// Add a listener to the controls signal...
- mConnection = controlp->getSignal()->connect(
+ // NOTE: All listeners connected to 0 group, for guaranty that variable handlers (gSavedSettings) call last
+ mConnection = controlp->getSignal()->connect(0,
boost::bind(&LLControlCache<T>::handleValueChange, this, _2)
);
mType = controlp->type();