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:
parent
c192ba2468
commit
dcc175de6a
|
@ -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);
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
|
|
Loading…
Reference in New Issue