diff options
author | andreykproductengine <andreykproductengine@lindenlab.com> | 2018-12-07 16:24:47 +0200 |
---|---|---|
committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2018-12-07 16:24:47 +0200 |
commit | d4fe87cca49162c978b4eacde880431977624874 (patch) | |
tree | 6c8892d34cbcd3564419dca48c8e639d1adfd52b /indra/newview/llenvironment.cpp | |
parent | cf7658ca3b7731e83ebf424b9c4b7a4c36ce328f (diff) |
SL-10091 Prevent info floater from re-requesting data when not open
Diffstat (limited to 'indra/newview/llenvironment.cpp')
-rw-r--r-- | indra/newview/llenvironment.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/llenvironment.cpp b/indra/newview/llenvironment.cpp index 20021fb075..d8095ad2ce 100644 --- a/indra/newview/llenvironment.cpp +++ b/indra/newview/llenvironment.cpp @@ -364,6 +364,7 @@ void LLEnvironment::initSingleton() //TODO: This frequently results in one more request than we need. It isn't breaking, but should be nicer. // We need to know new env version to fix this, without it we can only do full re-request + // Happens: on updates, on opening LLFloaterRegionInfo, on region crossing if info floater is open LLRegionInfoModel::instance().setUpdateCallback([this]() { requestRegion(); }); gAgent.addRegionChangedCallback([this]() { onRegionChange(); }); |