Owen Wang

When you click on an icon to open a combo box, you would expect it to
be enabled so you can choose something in it. In Wine this was not
guaranteed since your default flags could get lost in the process-heap
of the application.
This commit is contained in:
Alexandre Julliard 2000-05-30 15:28:06 +00:00
parent c192ba2468
commit dcc175de6a

View file

@ -1196,7 +1196,8 @@ static void CBDropDown( LPHEADCOMBO lphc )
RedrawWindow( lphc->self->hwndSelf, NULL, 0, RDW_INVALIDATE |
RDW_ERASE | RDW_UPDATENOW | RDW_NOCHILDREN );
ShowWindow( lphc->hWndLBox, SW_SHOWNA );
EnableWindow( lphc->hWndLBox, TRUE );
ShowWindow( lphc->hWndLBox, SW_SHOW);
}
/***********************************************************************