]> Dogcows Code - chaz/openbox/commitdiff
don't crash when a window adds itself to the focus order while cycling
authorDana Jansens <danakj@orodu.net>
Sat, 26 May 2007 20:43:08 +0000 (20:43 +0000)
committerDana Jansens <danakj@orodu.net>
Sat, 26 May 2007 20:43:08 +0000 (20:43 +0000)
openbox/focus.c
openbox/focus_cycle.c

index fad53e92dcf67897f927076129ce3f2465f44ad6..73099a4bcc688bef43411875de4d9626f4939641 100644 (file)
@@ -193,9 +193,30 @@ void focus_nothing()
                    event_curtime);
 }
 
+void focus_order_add_new(ObClient *c)
+{
+    if (c->iconic)
+        focus_order_to_top(c);
+    else {
+        g_assert(!g_list_find(focus_order, c));
+        /* if there are any iconic windows, put this above them in the order,
+           but if there are not, then put it under the currently focused one */
+        if (focus_order && ((ObClient*)focus_order->data)->iconic)
+            focus_order = g_list_insert(focus_order, c, 0);
+        else
+            focus_order = g_list_insert(focus_order, c, 1);
+    }
+
+    /* in the middle of cycling..? kill it. */
+    focus_cycle_stop();
+}
+
 void focus_order_remove(ObClient *c)
 {
     focus_order = g_list_remove(focus_order, c);
+
+    /* in the middle of cycling..? kill it. */
+    focus_cycle_stop();
 }
 
 void focus_order_to_top(ObClient *c)
index 4c0630b30abe39fc2edf0def2e5bccb12b99d195..1fef375480d41d7f06f85b2d68334b1700173994 100644 (file)
@@ -396,19 +396,3 @@ done_cycle:
 
     return;
 }
-
-void focus_order_add_new(ObClient *c)
-{
-    if (c->iconic)
-        focus_order_to_top(c);
-    else {
-        g_assert(!g_list_find(focus_order, c));
-        /* if there are any iconic windows, put this above them in the order,
-           but if there are not, then put it under the currently focused one */
-        if (focus_order && ((ObClient*)focus_order->data)->iconic)
-            focus_order = g_list_insert(focus_order, c, 0);
-        else
-            focus_order = g_list_insert(focus_order, c, 1);
-    }
-}
-
This page took 0.03019 seconds and 4 git commands to generate.