From: Mikael Magnusson Date: Tue, 18 Aug 2015 18:26:44 +0000 (+0200) Subject: Show class/name if window is unnamed X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=faa96af65f688c6d631199eda352527b34e29489;p=mikachu%2Fopenbox.git Show class/name if window is unnamed --- diff --git a/openbox/client.c b/openbox/client.c index f110a66e..1d2391a3 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -2111,8 +2111,14 @@ void client_update_title(ObClient *self) http://developer.gnome.org/projects/gup/hig/draft_hig_new/windows-alert.html */ data = g_strdup(""); - } else - data = g_strdup(_("Unnamed Window")); + } else { + if (self->class && *self->class) + data = g_strdup(self->class); + else if (self->name && *self->name) + data = g_strdup(self->name); + else + data = g_strdup(_("Unnamed Window")); + } } } self->original_title = g_strdup(data);