Actually one more quick test fix to cycle through all the images before continuing. Okay, NOW for themed checkboxes.

This commit is contained in:
Pietro Gagliardi 2018-06-10 10:45:50 -04:00
parent c22f643df7
commit 8dd9f08ba4
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ HRESULT uiprivLVN_GETDISPINFOImagesCheckboxes(uiTable *t, NMLVDISPINFOW *nm, uip
nm->item.mask |= LVIF_IMAGE;
#endif
nm->item.mask |= LVIF_IMAGE;
nm->item.iImage = 1;
nm->item.iImage = nm->item.iItem % 4;
return S_OK;
}