diff options
| author | Pietro Gagliardi <[email protected]> | 2014-12-22 21:16:42 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-12-22 21:16:42 -0500 |
| commit | d28b05c5b77debafd8dc410be0eebf28d50aba6b (patch) | |
| tree | dda91eb39c1c50c5ccaf82348d98606ec8dceb81 /wintable/new/draw.h | |
| parent | 7ba7222976b1260065d633855830ffd20e153bf0 (diff) | |
Fixed up the rest of the checkbox event handlers. Now to convert to using the drawing functions.
Diffstat (limited to 'wintable/new/draw.h')
| -rw-r--r-- | wintable/new/draw.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wintable/new/draw.h b/wintable/new/draw.h index e7ca331..314e2e3 100644 --- a/wintable/new/draw.h +++ b/wintable/new/draw.h @@ -58,7 +58,7 @@ static void drawCell(struct table *t, HDC dc, struct drawCellParams *p) toCheckboxRect(t, &r, p->xoff); SetDCBrushColor(dc, RGB(255, 0, 0)); if (p->row == lastCheckbox.row && p->column == lastCheckbox.column) - SetDCBrushColor(dc, RGB(128, 0, 128)); + SetDCBrushColor(dc, RGB(216, 0, 216)); if (t->checkboxMouseDown) { if (p->row == t->checkboxMouseDownRow && p->column == t->checkboxMouseDownColumn) SetDCBrushColor(dc, RGB(0, 0, 255)); |
