dont toggle when no client was passed to teh action
authorDana Jansens <danakj@orodu.net>
Sun, 6 Apr 2003 18:40:10 +0000 (18:40 +0000)
committerDana Jansens <danakj@orodu.net>
Sun, 6 Apr 2003 18:40:10 +0000 (18:40 +0000)
openbox/action.c

index 1c54b6e..cc93420 100644 (file)
@@ -621,7 +621,10 @@ void action_previous_desktop_row(union ActionData *data)
 
 void action_toggle_decorations(union ActionData *data)
 {
-    Client *c = data->client.c;
+    Client *c = data->client.c;;
+
+    if (!c) return;
+
     c->disabled_decorations = c->disabled_decorations ? 0 : ~0;
     client_setup_decor_and_functions(c);
 }