made squares equally sized, and 1px bigger
7739e6b4
1 file(s) · +5 −5
| 76 | 76 | } |
|
| 77 | 77 | x = (h + 2) / 4; |
|
| 78 | 78 | if(filledsquare) { |
|
| 79 | - | r.x = dc.x + 2; |
|
| 80 | - | r.y = dc.y + 2; |
|
| 81 | - | r.width = r.height = x; |
|
| 79 | + | r.x = dc.x + 1; |
|
| 80 | + | r.y = dc.y + 1; |
|
| 81 | + | r.width = r.height = x + 1; |
|
| 82 | 82 | XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1); |
|
| 83 | 83 | } |
|
| 84 | 84 | else if(emptysquare) { |
|
| 85 | - | pt[0].x = dc.x + 2; |
|
| 86 | - | pt[0].y = dc.y + 2; |
|
| 85 | + | pt[0].x = dc.x + 1; |
|
| 86 | + | pt[0].y = dc.y + 1; |
|
| 87 | 87 | pt[1].x = x; |
|
| 88 | 88 | pt[1].y = 0; |
|
| 89 | 89 | pt[2].x = 0; |