shot - only access e client if not null

This commit is contained in:
Carsten Haitzler 2015-04-15 07:39:58 +09:00
parent d8505f2978
commit 23b5392dbe
1 changed files with 5 additions and 1 deletions

View File

@ -868,7 +868,11 @@ _shot_now(E_Zone *zone, E_Client *ec, const char *params)
if (!e_widget_focus_get(o_bg)) e_widget_focus_set(o_box, 1);
if (ec)
evas_object_layer_set(e_win_client_get(win)->frame, ec->layer);
{
E_Client *c = e_win_client_get(win);
if (c) evas_object_layer_set(c->frame, ec->layer);
}
}
}