elm_win: update opaque region for fake windows

fake windows still gotta render

@fix
This commit is contained in:
Mike Blumenkrantz 2017-08-23 14:24:11 -04:00
parent 2510afe821
commit d0f1a57ade
1 changed files with 5 additions and 1 deletions

View File

@ -4409,8 +4409,12 @@ _elm_win_frame_style_update(Efl_Ui_Win_Data *sd, Eina_Bool force_emit, Eina_Bool
if (!sd->frame_obj)
{
if (EINA_LIKELY(sd->type == ELM_WIN_FAKE)) return;
if (!efl_finalized_get(sd->obj)) return;
if (EINA_LIKELY(sd->type == ELM_WIN_FAKE))
{
_elm_win_opaque_update(sd, 0);
return;
}
CRI("Window has no frame object!");
return;
}