Bug 336590: Caret can not be placed after space at the end of a wrapped line in textarea, using the mouse. r+sr=roc

This commit is contained in:
uriber%gmail.com 2006-05-11 16:28:01 +00:00
Родитель 6ccdcef971
Коммит c5c3c2492b
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -4042,8 +4042,6 @@ void nsTypedSelection::setAnchorFocusRange(PRInt32 indx)
}
else{
mAnchorFocusRange = mRangeArray[indx];
// Make sure the caret appears on the next line, if at a newline
SetInterlinePosition(PR_TRUE);
}
}
@ -5138,6 +5136,9 @@ nsTypedSelection::AddRange(nsIDOMRange* aRange)
}
setAnchorFocusRange(count -1);
// Make sure the caret appears on the next line, if at a newline
SetInterlinePosition(PR_TRUE);
nsCOMPtr<nsPresContext> presContext;
GetPresContext(getter_AddRefs(presContext));
selectFrames(presContext, aRange, PR_TRUE);