fix for bug# 50847 (regression)

r=kin
This commit is contained in:
anthonyd%netscape.com 2000-08-30 23:38:26 +00:00
Родитель 02806677a1
Коммит a05076f17c
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -2906,7 +2906,10 @@ nsGfxTextControlFrame2::SetTextControlFrameState(const nsAReadableString& aValue
flags &= ~(nsIHTMLEditor::eEditorDisabledMask);
flags &= ~(nsIHTMLEditor::eEditorReadonlyMask);
mEditor->SetFlags(flags);
htmlEditor->InsertText(currentValue);
if (currentValue.Length() < 1)
mEditor->DeleteSelection(nsIEditor::eNone);
else
htmlEditor->InsertText(currentValue);
mEditor->SetFlags(savedFlags);
if (domSel)
domSel->EndBatchChanges();