diff options
Diffstat (limited to 'indra/llui/lllineeditor.cpp')
| -rw-r--r-- | indra/llui/lllineeditor.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/indra/llui/lllineeditor.cpp b/indra/llui/lllineeditor.cpp index becb45fa79..bd6b00d38b 100644 --- a/indra/llui/lllineeditor.cpp +++ b/indra/llui/lllineeditor.cpp @@ -1630,12 +1630,12 @@ BOOL LLLineEditor::handleUnicodeCharHere(llwchar uni_char)  BOOL LLLineEditor::canDoDelete() const  { -	return ( !mReadOnly && mText.length() > 0 && (!mPassDelete || (hasSelection() || (getCursor() < mText.length()))) ); +	return ( !mReadOnly && (!mPassDelete || (hasSelection() || (getCursor() < mText.length()))) );  }  void LLLineEditor::doDelete()  { -	if (canDoDelete()) +	if (canDoDelete() && mText.length() > 0)  	{  		// Prepare for possible rollback  		LLLineEditorRollback rollback( this ); | 
