]> Dogcows Code - chaz/openbox/commitdiff
put the transient's title before the parent's in the focus popup
authorDana Jansens <danakj@orodu.net>
Thu, 10 Jul 2003 04:36:42 +0000 (04:36 +0000)
committerDana Jansens <danakj@orodu.net>
Thu, 10 Jul 2003 04:36:42 +0000 (04:36 +0000)
openbox/focus.c

index b8477bcb148c2cb4297baa3524c1381c67016b1c..8b7eb29a20ca283b9cf9750b8297df806ab07dc5 100644 (file)
@@ -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,
This page took 0.02298 seconds and 4 git commands to generate.