Bugfix: Don’t draw window title when titlebar is disabled (Thanks msi)
This commit is contained in:
parent
ff0e9d8df8
commit
2ee097cf92
|
@ -199,7 +199,7 @@ void decorate_window(xcb_connection_t *conn, Client *client, xcb_drawable_t draw
|
||||||
}
|
}
|
||||||
|
|
||||||
/* If the client has a title, we draw it */
|
/* If the client has a title, we draw it */
|
||||||
if (client->name != NULL) {
|
if (client->name != NULL && client->titlebar_position != TITLEBAR_OFF) {
|
||||||
/* Draw the font */
|
/* Draw the font */
|
||||||
uint32_t mask = XCB_GC_FOREGROUND | XCB_GC_BACKGROUND | XCB_GC_FONT;
|
uint32_t mask = XCB_GC_FOREGROUND | XCB_GC_BACKGROUND | XCB_GC_FONT;
|
||||||
uint32_t values[] = { color->text, color->background, font->id };
|
uint32_t values[] = { color->text, color->background, font->id };
|
||||||
|
|
Loading…
Reference in New Issue