Commit e8195355 authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

Invalidate items on set selection.

parent 3f137246
...@@ -1143,6 +1143,13 @@ static void LISTBOX_InvalidateItems( HWND hwnd, LB_DESCR *descr, INT index ) ...@@ -1143,6 +1143,13 @@ static void LISTBOX_InvalidateItems( HWND hwnd, LB_DESCR *descr, INT index )
} }
} }
static void LISTBOX_InvalidateItemRect( HWND hwnd, LB_DESCR *descr, INT index )
{
RECT rect;
if (LISTBOX_GetItemRect( descr, index, &rect ) == 1)
InvalidateRect( hwnd, &rect, TRUE );
}
/*********************************************************************** /***********************************************************************
* LISTBOX_GetItemHeight * LISTBOX_GetItemHeight
...@@ -1361,7 +1368,7 @@ static LRESULT LISTBOX_SelectItemRange( HWND hwnd, LB_DESCR *descr, INT first, ...@@ -1361,7 +1368,7 @@ static LRESULT LISTBOX_SelectItemRange( HWND hwnd, LB_DESCR *descr, INT first,
{ {
if (descr->items[i].selected) continue; if (descr->items[i].selected) continue;
descr->items[i].selected = TRUE; descr->items[i].selected = TRUE;
LISTBOX_RepaintItem( hwnd, descr, i, ODA_SELECT ); LISTBOX_InvalidateItemRect(hwnd, descr, i);
} }
LISTBOX_SetCaretIndex( hwnd, descr, last, TRUE ); LISTBOX_SetCaretIndex( hwnd, descr, last, TRUE );
} }
...@@ -1371,7 +1378,7 @@ static LRESULT LISTBOX_SelectItemRange( HWND hwnd, LB_DESCR *descr, INT first, ...@@ -1371,7 +1378,7 @@ static LRESULT LISTBOX_SelectItemRange( HWND hwnd, LB_DESCR *descr, INT first,
{ {
if (!descr->items[i].selected) continue; if (!descr->items[i].selected) continue;
descr->items[i].selected = FALSE; descr->items[i].selected = FALSE;
LISTBOX_RepaintItem( hwnd, descr, i, ODA_SELECT ); LISTBOX_InvalidateItemRect(hwnd, descr, i);
} }
} }
return LB_OKAY; return LB_OKAY;
......
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