diff options
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llfloaterdaycycle.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfloaterdaycycle.cpp b/indra/newview/llfloaterdaycycle.cpp index 8fec624edf..6b5b3ee106 100644 --- a/indra/newview/llfloaterdaycycle.cpp +++ b/indra/newview/llfloaterdaycycle.cpp @@ -554,12 +554,12 @@ void LLFloaterDayCycle::onAddKey(void* userData) break; } - if(kSldr->getValue().asInteger() >= max_sliders) + if (sSliderToKey.size() >= max_sliders) { LLSD args; args["SCOPE"] = LLEnvManager::getScopeString(sScope); args["MAX"] = max_sliders; - LLNotificationsUtil::add("DayCycleTooManyKeyframes", args); + LLNotificationsUtil::add("DayCycleTooManyKeyframes", args, LLSD(), LLNotificationFunctorRegistry::instance().DONOTHING); return; } |