diff options
| author | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2014-09-19 13:25:54 +0300 | 
|---|---|---|
| committer | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2014-09-19 13:25:54 +0300 | 
| commit | 82eca97e7b945d76b4cc562d7f4178b00466de5c (patch) | |
| tree | 33371a47902b4d8d7c1a657507191f2e50c9349f | |
| parent | 1bb34847e8189883faab70a57237945671057941 (diff) | |
MAINT-4458 FIXED Enable/disable combobox instead of changing its visibility.
| -rwxr-xr-x | indra/newview/llfloaterpreference.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfloaterpreference.cpp b/indra/newview/llfloaterpreference.cpp index 6e47cbb09f..2eadd40bfa 100755 --- a/indra/newview/llfloaterpreference.cpp +++ b/indra/newview/llfloaterpreference.cpp @@ -701,13 +701,13 @@ void LLFloaterPreference::onOpen(const LLSD& key)  				maturity_list->deleteItems(LLSD(SIM_ACCESS_ADULT));  			}  		} -		getChildView("maturity_desired_combobox")->setVisible( true); +		getChildView("maturity_desired_combobox")->setEnabled( true);  		getChildView("maturity_desired_textbox")->setVisible( false);  	}  	else  	{  		getChild<LLUICtrl>("maturity_desired_textbox")->setValue(maturity_combo->getSelectedItemLabel()); -		getChildView("maturity_desired_combobox")->setVisible( false); +		getChildView("maturity_desired_combobox")->setEnabled( false);  	}  	// Forget previous language changes.  | 
