diff options
author | maxim_productengine <mnikolenko@productengine.com> | 2019-01-25 15:57:59 +0200 |
---|---|---|
committer | maxim_productengine <mnikolenko@productengine.com> | 2019-01-25 15:57:59 +0200 |
commit | 7c1594090e8ec3a0509b22e4d650e03fbf26fadc (patch) | |
tree | 2401303ef50380674ebd49a5473dd02dddcac1a4 | |
parent | e66ccae9349cf0aef1656bac4af11766a224bd79 (diff) |
SL-10331 FIXED [EEP] Apply to Region/Parcel from the day editor sticks
-rw-r--r-- | indra/newview/llpanelenvironment.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llpanelenvironment.cpp b/indra/newview/llpanelenvironment.cpp index 000c7050ab..55b579d0a2 100644 --- a/indra/newview/llpanelenvironment.cpp +++ b/indra/newview/llpanelenvironment.cpp @@ -373,7 +373,7 @@ void LLPanelEnvironmentInfo::updateEditFloater(const LLEnvironment::EnvironmentI { LLFloaterEditExtDayCycle *dayeditor(getEditFloater(false)); - if (!dayeditor) + if (!dayeditor || !dayeditor->isInVisibleChain()) return; if (!nextenv || !nextenv->mDayCycle || !enable) |