make e_comp_object_frame_allowed() return false for ignored clients

This commit is contained in:
Mike Blumenkrantz 2017-06-30 10:25:23 -04:00
parent d0accb8e52
commit b183e001a1
1 changed files with 2 additions and 1 deletions

View File

@ -3307,7 +3307,8 @@ E_API Eina_Bool
e_comp_object_frame_allowed(Evas_Object *obj)
{
API_ENTRY EINA_FALSE;
return (!cw->ec->mwm.borderless) && (cw->frame_object || (!cw->client_inset.calc));
return (!e_client_util_ignored_get(cw->ec)) && (!cw->ec->mwm.borderless) &&
(cw->frame_object || (!cw->client_inset.calc));
}
E_API void