Create toolbar with a not zero default size, it allows applications
which check toolbar size before adding buttons to it work.
This commit is contained in:
parent
e5a5e7271d
commit
304f106a07
|
@ -754,14 +754,9 @@ CreateToolbarEx (HWND hwnd, DWORD style, UINT wID, INT nBitmaps,
|
||||||
{
|
{
|
||||||
HWND hwndTB;
|
HWND hwndTB;
|
||||||
|
|
||||||
/* If not position is specified then put it at the top */
|
|
||||||
if ((style & CCS_BOTTOM) == 0) {
|
|
||||||
style|=CCS_TOP;
|
|
||||||
}
|
|
||||||
|
|
||||||
hwndTB =
|
hwndTB =
|
||||||
CreateWindowExA (0, TOOLBARCLASSNAMEA, "", style|WS_CHILD, 0, 0, 0, 0,
|
CreateWindowExA(0, TOOLBARCLASSNAMEA, NULL, style|WS_CHILD, 0,0,100,30,
|
||||||
hwnd, (HMENU)wID, 0, NULL);
|
hwnd, (HMENU)wID, COMCTL32_hModule, NULL);
|
||||||
if(hwndTB) {
|
if(hwndTB) {
|
||||||
TBADDBITMAP tbab;
|
TBADDBITMAP tbab;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue