diff options
| -rw-r--r-- | indra/llui/lllineeditor.cpp | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/indra/llui/lllineeditor.cpp b/indra/llui/lllineeditor.cpp index 118339577a..fa99a19c9d 100644 --- a/indra/llui/lllineeditor.cpp +++ b/indra/llui/lllineeditor.cpp @@ -163,6 +163,9 @@ LLLineEditor::LLLineEditor(const LLLineEditor::Params& p)  {  	llassert( mMaxLengthBytes > 0 ); +	LLUICtrl::setEnabled(TRUE); +	setEnabled(p.enabled); +  	mScrollTimer.reset();  	mTripleClickTimer.reset();  	setText(p.default_text()); @@ -335,7 +338,6 @@ void LLLineEditor::reshape(S32 width, S32 height, BOOL called_from_parent)  void LLLineEditor::setEnabled(BOOL enabled)  { -	LLUICtrl::setEnabled(enabled);  	mReadOnly = !enabled;  	setTabStop(!mReadOnly);  	updateAllowingLanguageInput(); | 
