change the default to be 20 when a "null" size is specified

Bug 73575 r=kmcclusk, sr=attinasi
This commit is contained in:
rods%netscape.com 2001-05-14 13:50:35 +00:00
Родитель 9697c9cf19
Коммит 2f3b8a65aa
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -2412,7 +2412,7 @@ nsGfxTextControlFrame2::GetSizeFromContent(PRInt32* aSize) const
*aSize = 20;
}
#else
*aSize = 1;
*aSize = 20; // use '1' to be compatable with Nav 4.x, Use '20' to be compatable with IE
#endif
}
return result;