Bug 874570: Make scrollbar frames smaller for small overlay scrollbars. r=smichaud

This commit is contained in:
Stephen Pohl 2013-08-01 17:01:22 -04:00
parent 36dcdbd154
commit 4bf023b44c

View File

@ -2851,7 +2851,15 @@ nsNativeThemeCocoa::GetMinimumWidgetSize(nsRenderingContext* aContext,
*aIsOverridable = false;
if (nsLookAndFeel::UseOverlayScrollbars()) {
aResult->SizeTo(16, 16);
nsIFrame* scrollbarFrame = GetParentScrollbarFrame(aFrame);
if (scrollbarFrame &&
scrollbarFrame->StyleDisplay()->mAppearance ==
NS_THEME_SCROLLBAR_SMALL) {
aResult->SizeTo(14, 14);
}
else {
aResult->SizeTo(16, 16);
}
break;
}