]> Dogcows Code - chaz/openbox/commitdiff
pasted that a bit too far down yesterday
authorMikael Magnusson <mikachu@comhem.se>
Sun, 21 Mar 2004 11:38:21 +0000 (11:38 +0000)
committerMikael Magnusson <mikachu@comhem.se>
Sun, 21 Mar 2004 11:38:21 +0000 (11:38 +0000)
openbox/client.c

index 3fe108f51c1f7159ed24ece8ecb2e9879fc5a77e..cd58df968b572ad4b9f7dabbffa5e5b83be40537 100644 (file)
@@ -1444,7 +1444,11 @@ void client_update_title(ObClient *self)
     if (!PROP_GETS(self->window, net_wm_name, utf8, &data))
         /* try old x stuff */
         if (!PROP_GETS(self->window, wm_name, locale, &data))
-            data = g_strdup("Unnamed Window");
+            // http://developer.gnome.org/projects/gup/hig/draft_hig_new/windows-alert.html
+            if (self->transient)
+                data = '\0';
+            else
+                data = g_strdup("Unnamed Window");
 
     /* did the title change? then reset the title_count */
     if (old_title && 0 != strncmp(old_title, data, strlen(data)))
@@ -1505,12 +1509,6 @@ void client_update_title(ObClient *self)
         data = vdata;
     }
 
-    // http://developer.gnome.org/projects/gup/hig/draft_hig_new/windows-alert.html
-    if (self->transient)
-        data = '\0';
-    else
-        data = g_strdup("Unnamed Window");
-
     PROP_SETS(self->window, net_wm_visible_icon_name, data);
 
     self->icon_title = data;
This page took 0.0314 seconds and 4 git commands to generate.