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.
oldstable
Alexandre Julliard 2000-05-30 15:28:06 +00:00
parent c192ba2468
commit dcc175de6a
1 changed files with 2 additions and 1 deletions

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);
}
/***********************************************************************