if ec->layer is pre-assigned before call of evas_object_layer_set()
and at the same time if the condition 'ec->layer_pending' TRUE than,
ec->layer could dismatch with cw->layer because it is not set.
Change-Id: Ia74ab444aa6fbb871a7d5ce5c7d79190af2248cc
win_type = E_WINDOW_TYPE_NORMAL;
if (ec->layer != E_LAYER_CLIENT_NORMAL)
{
- ec->layer = E_LAYER_CLIENT_NORMAL;
- if (ec->frame)
- {
- if (ec->layer != evas_object_layer_get(ec->frame))
- evas_object_layer_set(ec->frame, ec->layer);
- }
+ e_client_layer_set(ec, E_LAYER_CLIENT_NORMAL);
}
break;