Changed in src/render.c LINE 124, 125 -= 2*2 to -= 4
Patch status: rejected
Patch by Sebastian Pielawa
To apply this patch, use:
curl http://cr.i3wm.org/patch/46/raw.patch | git am
b/src/render.c
| 13 |
@@ -121,8 +121,8 @@ void render_con(Con *con, bool render_fullscreen) {
|
| 14 |
if (show_debug_borders) {
|
| 15 |
rect.x += 2; |
| 16 |
rect.y += 2; |
| 17 |
- rect.width -= 2 * 2; |
| 18 |
- rect.height -= 2 * 2; |
| 19 |
+ rect.width -= 4; |
| 20 |
+ rect.height -= 4; |
| 21 |
} |
| 22 |
|
| 23 |
int x = rect.x; |