Commit a3b4e205 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

Fix TB_GETBUTTONSIZE to return the correct width/height for no

buttons.
parent 21f94650
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment