discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=d0f1a57ade912c59b2686dc4fddcafdfd95e5c7a

commit d0f1a57ade912c59b2686dc4fddcafdfd95e5c7a
Author: Mike Blumenkrantz <[email protected]>
Date:   Wed Aug 23 14:24:11 2017 -0400

    elm_win: update opaque region for fake windows
    
    fake windows still gotta render
    
    @fix
---
 src/lib/elementary/efl_ui_win.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/lib/elementary/efl_ui_win.c b/src/lib/elementary/efl_ui_win.c
index f0e41d534d..cc936e5d93 100644
--- a/src/lib/elementary/efl_ui_win.c
+++ b/src/lib/elementary/efl_ui_win.c
@@ -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;
      }

-- 


Reply via email to