This commit is contained in:
evaughan%netscape.com 2000-07-13 20:51:39 +00:00
Родитель e7445780f7
Коммит 0e16e3313a
2 изменённых файлов: 5 добавлений и 3 удалений

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

@ -54,12 +54,12 @@ nsScrollPortFrame::NeedsClipWidget()
while (parentFrame) {
if ((NS_SUCCEEDED(parentFrame->QueryInterface(kIFormControlFrameIID, (void**)&fcFrame)))) {
return(PR_TRUE);
return(PR_FALSE);
}
parentFrame->GetParent(&parentFrame);
}
return PR_FALSE;
return PR_TRUE;
}
#ifdef NS_DEBUG

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

@ -286,7 +286,9 @@ nsScrollBoxFrame::CreateScrollingView(nsIPresContext* aPresContext)
scrollingView->SetScrollPreference(nsScrollPreference_kNeverScroll);
// Have the scrolling view create its internal widgets
scrollingView->CreateScrollControls();
if (NeedsClipWidget()) {
scrollingView->CreateScrollControls();
}
// Set the scrolling view's insets to whatever our border is
nsMargin border;