diff options
| author | Vadim ProductEngine <vsavchuk@productengine.com> | 2011-06-09 19:01:37 +0300 | 
|---|---|---|
| committer | Vadim ProductEngine <vsavchuk@productengine.com> | 2011-06-09 19:01:37 +0300 | 
| commit | e4d00671037e25bfe233bcd441140e113aeba64d (patch) | |
| tree | d7cdfdd922cc96366b658fb82ac06d8f8c59e3c4 | |
| parent | 17ce17096f66143776ae1b9dafefcc2dbc85760a (diff) | |
STORM-1253 WIP Gray out the save button if empty name entered in the combo box.
| -rw-r--r-- | indra/newview/llfloatereditdaycycle.cpp | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/indra/newview/llfloatereditdaycycle.cpp b/indra/newview/llfloatereditdaycycle.cpp index ebb8369c8f..2cbe889322 100644 --- a/indra/newview/llfloatereditdaycycle.cpp +++ b/indra/newview/llfloatereditdaycycle.cpp @@ -129,6 +129,7 @@ void LLFloaterEditDayCycle::initCallbacks(void)  {  	mDayCycleNameEditor->setKeystrokeCallback(boost::bind(&LLFloaterEditDayCycle::onDayCycleNameEdited, this), NULL);  	mDayCyclesCombo->setCommitCallback(boost::bind(&LLFloaterEditDayCycle::onDayCycleSelected, this)); +	mDayCyclesCombo->setTextEntryCallback(boost::bind(&LLFloaterEditDayCycle::onDayCycleNameEdited, this));  	mTimeSlider->setCommitCallback(boost::bind(&LLFloaterEditDayCycle::onTimeSliderMoved, this));  	mKeysSlider->setCommitCallback(boost::bind(&LLFloaterEditDayCycle::onKeyTimeMoved, this));  	mTimeCtrl->setCommitCallback(boost::bind(&LLFloaterEditDayCycle::onKeyTimeChanged, this)); | 
