From d498522a560529ef315dd30fc4bc14c7a6214b30 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sun, 6 Apr 2003 18:40:10 +0000 Subject: [PATCH] dont toggle when no client was passed to teh action --- openbox/action.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/openbox/action.c b/openbox/action.c index 1c54b6e8..cc934206 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -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); } -- 2.39.2