diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-07-10 04:36:42 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-07-10 04:36:42 +0000 |
| commit | bd15aab855a6c62afb7e4b1648714e13d22520ec (patch) | |
| tree | 8eb874ac74f0b657edf506b93128d5a8eeb20c9e | |
| parent | 9cc08630ca94b688ec36806e3e6590a7a52ead11 (diff) | |
put the transient's title before the parent's in the focus popup
| -rw-r--r-- | openbox/focus.c | 4 |
1 files 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, |
