put the transient's title before the parent's in the focus popup
This commit is contained in:
parent
9cc08630ca
commit
bd15aab855
1 changed files with 2 additions and 2 deletions
|
@ -268,9 +268,9 @@ static void popup_cycle(Client *c, gboolean show)
|
||||||
if (p == c)
|
if (p == c)
|
||||||
title = NULL;
|
title = NULL;
|
||||||
else
|
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);
|
NULL);
|
||||||
|
|
||||||
popup_show(focus_cycle_popup,
|
popup_show(focus_cycle_popup,
|
||||||
|
|
Loading…
Reference in a new issue