From bd15aab855a6c62afb7e4b1648714e13d22520ec Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Thu, 10 Jul 2003 04:36:42 +0000 Subject: [PATCH] put the transient's title before the parent's in the focus popup --- openbox/focus.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openbox/focus.c b/openbox/focus.c index b8477bcb..8b7eb29a 100644 --- a/openbox/focus.c +++ b/openbox/focus.c @@ -268,9 +268,9 @@ static void popup_cycle(Client *c, gboolean show) if (p == c) title = NULL; else - title = g_strconcat((p->iconic ? p->icon_title : p->title), + title = g_strconcat((c->iconic ? c->icon_title : c->title), " - ", - (c->iconic ? c->icon_title : c->title), + (p->iconic ? p->icon_title : p->title), NULL); popup_show(focus_cycle_popup, -- 2.39.2