hack to get caret to draw on empty line.

This commit is contained in:
mjudge%netscape.com 1999-03-13 21:33:01 +00:00
Родитель 422823b285
Коммит 95cc51a5d9
2 изменённых файлов: 8 добавлений и 0 удалений

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

@ -286,6 +286,10 @@ void nsCaret::DrawCaret()
{
nsRect frameRect;
theFrame->GetRect(frameRect);
if (0 == frameRect.height){
frameRect.height = 200;
frameRect.y += 200;
}
nsCOMPtr<nsIPresContext> presContext;
mPresShell->GetPresContext(getter_AddRefs(presContext));

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

@ -286,6 +286,10 @@ void nsCaret::DrawCaret()
{
nsRect frameRect;
theFrame->GetRect(frameRect);
if (0 == frameRect.height){
frameRect.height = 200;
frameRect.y += 200;
}
nsCOMPtr<nsIPresContext> presContext;
mPresShell->GetPresContext(getter_AddRefs(presContext));