]> git.sur5r.net Git - i3/i3/commitdiff
draw empty title if WM_NAME is empty
authorSascha Kruse <knopwob@googlemail.com>
Sun, 23 Sep 2012 04:09:34 +0000 (06:09 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 23 Sep 2012 10:00:45 +0000 (12:00 +0200)
fixes #811

src/x.c

diff --git a/src/x.c b/src/x.c
index 0be83ad0201b1cff575a5b84c1ba680278766ca5..f1bfeb719156ebe4c49acc9e94036494d1a86409 100644 (file)
--- a/src/x.c
+++ b/src/x.c
@@ -481,7 +481,7 @@ void x_draw_decoration(Con *con) {
     int text_offset_y = (con->deco_rect.height - config.font.height) / 2;
 
     struct Window *win = con->window;
-    if (win == NULL || win->name == NULL) {
+    if (win == NULL) {
         /* we have a split container which gets a representation
          * of its children as title
          */
@@ -499,6 +499,9 @@ void x_draw_decoration(Con *con) {
         goto copy_pixmaps;
     }
 
+    if (win->name == NULL)
+        goto copy_pixmaps;
+
     int indent_level = 0,
         indent_mult = 0;
     Con *il_parent = parent;