Fix TB_GETBUTTONSIZE to return the correct width/height for no

buttons.
This commit is contained in:
Robert Shearman 2005-04-15 14:09:05 +00:00 committed by Alexandre Julliard
parent 21f9465067
commit a3b4e20503
1 changed files with 1 additions and 1 deletions

View File

@ -3445,7 +3445,7 @@ TOOLBAR_GetButtonSize (HWND hwnd)
return MAKELONG((WORD)infoPtr->nButtonWidth,
(WORD)infoPtr->nButtonHeight);
else
return MAKELONG(8,7);
return MAKELONG(23,22);
}