draw consistent borders for each frame in a tabbed/stacked container
The condition was a relict from older rendering code, I think. This fixes #172.
This commit is contained in:
parent
187c72fa96
commit
0ec3481c69
12
src/layout.c
12
src/layout.c
|
@ -172,13 +172,11 @@ void decorate_window(xcb_connection_t *conn, Client *client, xcb_drawable_t draw
|
||||||
if (client->titlebar_position != TITLEBAR_OFF) {
|
if (client->titlebar_position != TITLEBAR_OFF) {
|
||||||
/* Draw the lines */
|
/* Draw the lines */
|
||||||
xcb_draw_line(conn, drawable, gc, color->border, offset_x, offset_y, offset_x + client->rect.width, offset_y);
|
xcb_draw_line(conn, drawable, gc, color->border, offset_x, offset_y, offset_x + client->rect.width, offset_y);
|
||||||
if (mode == MODE_DEFAULT ||
|
xcb_draw_line(conn, drawable, gc, color->border,
|
||||||
CIRCLEQ_NEXT_OR_NULL(&(client->container->clients), client, clients) == NULL)
|
offset_x + 2, /* x */
|
||||||
xcb_draw_line(conn, drawable, gc, color->border,
|
offset_y + font->height + 3, /* y */
|
||||||
offset_x + 2, /* x */
|
offset_x + client->rect.width - 3, /* to_x */
|
||||||
offset_y + font->height + 3, /* y */
|
offset_y + font->height + 3 /* to_y */);
|
||||||
offset_x + client->rect.width - 3, /* to_x */
|
|
||||||
offset_y + font->height + 3 /* to_y */);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* If the client has a title, we draw it */
|
/* If the client has a title, we draw it */
|
||||||
|
|
Loading…
Reference in New Issue