summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llwlparammanager.cpp31
1 files changed, 9 insertions, 22 deletions
diff --git a/indra/newview/llwlparammanager.cpp b/indra/newview/llwlparammanager.cpp
index 7af17a8d0b..e5fb88afa2 100644
--- a/indra/newview/llwlparammanager.cpp
+++ b/indra/newview/llwlparammanager.cpp
@@ -600,33 +600,20 @@ void LLWLParamManager::applyUserPrefs(bool interpolate)
}
else // apply user-specified settings
{
- // Load day cycle anyway so that we can switch to it from a fixed sky.
- LL_DEBUGS("Windlight") << "Loading day cycle " << LLEnvManagerNew::instance().getDayCycleName() << LL_ENDL;
- mDay.loadDayCycleFromFile(LLEnvManagerNew::instance().getDayCycleName() + ".xml");
-
- bool use_day_cycle = LLEnvManagerNew::instance().getUseDayCycle();
- if (!use_day_cycle) // if we should use fixed sky
+ if (LLEnvManagerNew::instance().getUseDayCycle())
+ {
+ std::string day_cycle = LLEnvManagerNew::instance().getDayCycleName();
+ LL_DEBUGS("Windlight") << "Applying day cycle [" << day_cycle << "]" << LL_ENDL;
+ mDay.loadDayCycleFromFile(day_cycle + ".xml");
+ resetAnimator(0.5, true); // set to noon and start animator
+ }
+ else
{
+ mAnimator.deactivate();
std::string sky = LLEnvManagerNew::instance().getSkyPresetName();
LL_DEBUGS("Windlight") << "Loading fixed sky " << sky << LL_ENDL;
getParamSet(LLWLParamKey(sky, LLWLParamKey::SCOPE_LOCAL), mCurParams);
}
-
- // Animator should be running if we're using a day cycle
- // and be stopped if we want fixed sky.
- if (use_day_cycle != mAnimator.getIsRunning())
- {
- if (use_day_cycle)
- {
- LL_DEBUGS("Windlight") << "Activating animator" << LL_ENDL;
- mAnimator.activate(mAnimator.getTimeType());
- }
- else
- {
- LL_DEBUGS("Windlight") << "Deactivating animator" << LL_ENDL;
- mAnimator.deactivate();
- }
- }
}
}