comdlg32: Fix bug where the colour graph's cross is not painted.
This commit is contained in:
parent
5da83f03e2
commit
19ed584903
|
@ -1075,10 +1075,10 @@ LRESULT CC_WMPaint( HWND hDlg, WPARAM wParam, LPARAM lParam )
|
||||||
CC_PaintPredefColorArray(hDlg, 6, 8);
|
CC_PaintPredefColorArray(hDlg, 6, 8);
|
||||||
CC_PaintUserColorArray(hDlg, 2, 8, lpp->lpcc->lpCustColors);
|
CC_PaintUserColorArray(hDlg, 2, 8, lpp->lpcc->lpCustColors);
|
||||||
CC_PaintLumBar(hDlg, lpp->h, lpp->s);
|
CC_PaintLumBar(hDlg, lpp->h, lpp->s);
|
||||||
CC_PaintCross(hDlg, lpp->h, lpp->s);
|
|
||||||
CC_PaintTriangle(hDlg, lpp->l);
|
CC_PaintTriangle(hDlg, lpp->l);
|
||||||
CC_PaintSelectedColor(hDlg, lpp->lpcc->rgbResult);
|
CC_PaintSelectedColor(hDlg, lpp->lpcc->rgbResult);
|
||||||
CC_PaintColorGraph(hDlg);
|
CC_PaintColorGraph(hDlg);
|
||||||
|
CC_PaintCross(hDlg, lpp->h, lpp->s);
|
||||||
EndPaint(hDlg, &ps);
|
EndPaint(hDlg, &ps);
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
Loading…
Reference in New Issue