don't crash when using <raise> and alt-tab and there are no windows to cycle between
authorDana Jansens <danakj@orodu.net>
Fri, 1 Feb 2008 06:56:37 +0000 (01:56 -0500)
committerDana Jansens <danakj@orodu.net>
Tue, 5 Feb 2008 17:32:46 +0000 (12:32 -0500)
openbox/actions/cyclewindows.c
openbox/actions/directionalwindows.c

index 059db93..cb341af 100644 (file)
@@ -134,7 +134,7 @@ static gboolean run_func(ObActionsData *data, gpointer options)
     cycling = TRUE;
 
     stacking_restore();
     cycling = TRUE;
 
     stacking_restore();
-    if (o->raise) stacking_temp_raise(CLIENT_AS_WINDOW(ft));
+    if (o->raise && ft) stacking_temp_raise(CLIENT_AS_WINDOW(ft));
 
     return TRUE;
 }
 
     return TRUE;
 }
index c575d84..55c9e60 100644 (file)
@@ -156,7 +156,7 @@ static gboolean run_func(ObActionsData *data, gpointer options)
         cycling = TRUE;
 
         stacking_restore();
         cycling = TRUE;
 
         stacking_restore();
-        if (o->raise) stacking_temp_raise(CLIENT_AS_WINDOW(ft));
+        if (o->raise && ft) stacking_temp_raise(CLIENT_AS_WINDOW(ft));
     }
 
     return o->interactive;
     }
 
     return o->interactive;