Changed the button state to "up" as soon as it is known that the
selection has been cancelled, so the button is redrawn in the "up" state.
This commit is contained in:
parent
9d9e0606a4
commit
6d40d1b05f
|
@ -1195,6 +1195,7 @@ static void COMBO_LButtonDown( LPHEADCOMBO lphc, LPARAM lParam )
|
|||
{
|
||||
/* got a click to cancel selection */
|
||||
|
||||
lphc->wState &= ~CBF_BUTTONDOWN;
|
||||
CBRollUp( lphc, TRUE, FALSE );
|
||||
if( !IsWindow( hWnd ) ) return;
|
||||
|
||||
|
@ -1203,7 +1204,6 @@ static void COMBO_LButtonDown( LPHEADCOMBO lphc, LPARAM lParam )
|
|||
lphc->wState &= ~CBF_CAPTURE;
|
||||
ReleaseCapture();
|
||||
}
|
||||
lphc->wState &= ~CBF_BUTTONDOWN;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue