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/?p=mikachu%2Fopenbox.git;a=commitdiff_plain;h=26981d9ab8fa402717d4e44216e9991d90bbb592 Show class/name if window is unnamed --- diff --git a/openbox/client.c b/openbox/client.c index f7798a8..a16df33 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -2112,8 +2112,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);