diff options
| -rw-r--r-- | indra/llui/lllineeditor.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/indra/llui/lllineeditor.cpp b/indra/llui/lllineeditor.cpp index d87b9d930c..83527ae5ad 100644 --- a/indra/llui/lllineeditor.cpp +++ b/indra/llui/lllineeditor.cpp @@ -1805,14 +1805,14 @@ void LLLineEditor::draw()  	{  		S32 select_left;  		S32 select_right; -		if( mSelectionStart < getCursor() ) +		if (mSelectionStart < mSelectionEnd)  		{  			select_left = mSelectionStart; -			select_right = getCursor(); +			select_right = mSelectionEnd;  		}  		else  		{ -			select_left = getCursor(); +			select_left = mSelectionEnd;  			select_right = mSelectionStart;  		} | 
