dont toggle when no client was passed to teh action

This commit is contained in:
Dana Jansens 2003-04-06 18:40:10 +00:00
parent d43a109ba2
commit d498522a56

View 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);
}