Changed icons, added Todo, fixed location of icons in properties combo box

This commit is contained in:
andreja6
2019-11-03 23:23:34 -08:00
parent 552be1ec54
commit 7898df7a8e
8 changed files with 151 additions and 148 deletions

View File

@@ -141,11 +141,11 @@ LRESULT CALLBACK PropProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
break;
SelectObject(hdc, hbmMask);
BitBlt(lpdis->hDC, x, lpdis->rcItem.top + 1,
BitBlt(lpdis->hDC, x, lpdis->rcItem.top,
CX_BITMAP, CY_BITMAP, hdc, mul*16, 0, SRCAND);
SelectObject(hdc, hbmIcon);
BitBlt(lpdis->hDC, x, lpdis->rcItem.top + 1,
BitBlt(lpdis->hDC, x, lpdis->rcItem.top,
CX_BITMAP, CY_BITMAP, hdc, mul*16, 0, SRCPAINT);
DeleteDC(hdc);