Set the scroll bar dimensions to 16 pixels instead of 10.

git-svn-id: svn://10.0.0.236/trunk@14388 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
pierre%netscape.com 1998-11-11 01:41:44 +00:00
parent a1df98431f
commit 32cba0e347
2 changed files with 4 additions and 4 deletions

View File

@ -93,8 +93,8 @@ NS_IMETHODIMP nsDeviceContextMac :: Init(nsNativeWidget aNativeWidget)
NS_IMETHODIMP nsDeviceContextMac :: GetScrollBarDimensions(float &aWidth, float &aHeight) const
{
// XXX Should we push this to widget library
aWidth = 240.0;
aHeight = 240.0;
aWidth = 320.0;
aHeight = 320.0;
return NS_OK;
}

View File

@ -93,8 +93,8 @@ NS_IMETHODIMP nsDeviceContextMac :: Init(nsNativeWidget aNativeWidget)
NS_IMETHODIMP nsDeviceContextMac :: GetScrollBarDimensions(float &aWidth, float &aHeight) const
{
// XXX Should we push this to widget library
aWidth = 240.0;
aHeight = 240.0;
aWidth = 320.0;
aHeight = 320.0;
return NS_OK;
}