Fixed bug that prevented typing when in Editor mode.

This commit is contained in:
kin%netscape.com 1999-08-30 13:35:40 +00:00
parent 46536be078
commit 24215934c2

View File

@ -78,6 +78,8 @@ nsresult NS_InitEditorMode(nsIDOMDocument *aDOMDocument, nsIPresShell* aPresShel
}
result = gEditor->Init(aDOMDocument, aPresShell, 0);
if (NS_SUCCEEDED(result))
result = gEditor->PostCreate();
return result;
}