caret is placed after inserted element, matches Nav 4 behavior.

This commit is contained in:
buster%netscape.com 1999-06-28 21:35:57 +00:00
Родитель b7e797ed52
Коммит 75e33996cd
2 изменённых файлов: 6 добавлений и 4 удалений

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

@ -97,8 +97,9 @@ NS_IMETHODIMP InsertElementTxn::Do(void)
nsCOMPtr<nsIDOMSelection> selection;
result = mEditor->GetSelection(getter_AddRefs(selection));
if ((NS_SUCCEEDED(result)) && selection)
{
selection->Collapse(mParent, mOffset);
{ // place the selection just after the inserted element
selection->Collapse(mParent, mOffset+1);
//selection->Extend(mParent, mOffset+1);
}
}
return result;

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

@ -97,8 +97,9 @@ NS_IMETHODIMP InsertElementTxn::Do(void)
nsCOMPtr<nsIDOMSelection> selection;
result = mEditor->GetSelection(getter_AddRefs(selection));
if ((NS_SUCCEEDED(result)) && selection)
{
selection->Collapse(mParent, mOffset);
{ // place the selection just after the inserted element
selection->Collapse(mParent, mOffset+1);
//selection->Extend(mParent, mOffset+1);
}
}
return result;