oops. union works better than intersect...

This commit is contained in:
michaelp%netscape.com 1999-04-16 05:19:45 +00:00
Родитель f99bf01327
Коммит aba2f5adb4
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1388,7 +1388,7 @@ static void calc_extents(nsIView *view, nsRect *extents, nscoord ox, nscoord oy)
bounds.x += ox;
bounds.y += oy;
extents->IntersectRect(*extents, bounds);
extents->UnionRect(*extents, bounds);
calc_extents(kid, extents, bounds.x, bounds.y);
}