[COMCTL32] Redraw children when the combo box is dropped down.

Wine commit c82d6ee by Gabriel Ivancescu
Fixes CORE-17883
This commit is contained in:
Robert Naumann 2021-12-04 20:23:34 +01:00
parent 89dd9ecacb
commit ff89651ed0

View file

@ -1046,8 +1046,7 @@ static void CBDropDown( LPHEADCOMBO lphc )
if( !(lphc->wState & CBF_NOREDRAW) )
RedrawWindow( lphc->self, NULL, 0, RDW_INVALIDATE |
RDW_ERASE | RDW_UPDATENOW | RDW_NOCHILDREN );
RedrawWindow( lphc->self, NULL, 0, RDW_INVALIDATE | RDW_ERASE | RDW_UPDATENOW );
EnableWindow( lphc->hWndLBox, TRUE );
if (GetCapture() != lphc->self)