comctl32: Cancel marquee selection if we lose focus in listview.

This commit is contained in:
Owen Rudge 2009-11-02 10:58:00 -06:00 committed by Alexandre Julliard
parent 038e36aded
commit c1877a2d50
1 changed files with 13 additions and 1 deletions

View File

@ -9453,7 +9453,19 @@ static LRESULT LISTVIEW_KillFocus(LISTVIEW_INFO *infoPtr)
/* if we have a focus rectangle, get rid of it */
LISTVIEW_ShowFocusRect(infoPtr, FALSE);
/* if have a marquee selection, stop it */
if (infoPtr->bMarqueeSelect)
{
/* Remove the marquee rectangle and release our mouse capture */
LISTVIEW_InvalidateRect(infoPtr, &infoPtr->marqueeRect);
ReleaseCapture();
SetRect(&infoPtr->marqueeRect, 0, 0, 0, 0);
infoPtr->bMarqueeSelect = FALSE;
}
/* set window focus flag */
infoPtr->bFocus = FALSE;