Commit dcc175de authored by Alexandre Julliard's avatar Alexandre Julliard

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.
parent c192ba24
......@@ -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);
}
/***********************************************************************
......
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