Fixed the clip rgn in Scroll(): the scrollbars no longer flicker.

This commit is contained in:
pierre%netscape.com 1999-01-19 04:29:08 +00:00
Родитель 73b2ab6abe
Коммит bbb59e88cc
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -736,7 +736,7 @@ NS_IMETHODIMP nsWindow::Scroll(PRInt32 aDx, PRInt32 aDy, nsRect *aClipRect)
RgnHandle updateRgn = ::NewRgn();
if (updateRgn == nil)
return NS_ERROR_OUT_OF_MEMORY;
::ClipRect(&macRect);
// ::ClipRect(&macRect);
::ScrollRect(&macRect, aDx, aDy, updateRgn);
::InvalRgn(updateRgn);
::DisposeRgn(updateRgn);