discomfitor pushed a commit to branch master.

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

commit 95b5533f73c32867f259dbcfd3f9e5c1ac659133
Author: Mike Blumenkrantz <zm...@osg.samsung.com>
Date:   Wed Jun 22 11:16:58 2016 -0400

    elm win: set input regions for wl windows again
    
    this seems to have been lost at some point and was breaking input
    
    ref T3819
---
 src/lib/elementary/efl_ui_win.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/lib/elementary/efl_ui_win.c b/src/lib/elementary/efl_ui_win.c
index 1a694bd..320be9a 100644
--- a/src/lib/elementary/efl_ui_win.c
+++ b/src/lib/elementary/efl_ui_win.c
@@ -1315,6 +1315,7 @@ _elm_win_opaque_update(Efl_Ui_Win_Data *sd)
         wdata->content.w = ow;
         wdata->content.h = oh;
         ecore_wl2_window_geometry_set(sd->wl.win, 0, 0, ow, oh);
+        ecore_wl2_window_input_region_set(sd->wl.win, 0, 0, ow, oh);
         return;
      }
 
@@ -1326,6 +1327,7 @@ _elm_win_opaque_update(Efl_Ui_Win_Data *sd)
    if (!alpha)
      ecore_wl2_window_opaque_region_set(sd->wl.win, ox, oy, ow, oh);
    ecore_wl2_window_geometry_set(sd->wl.win, ox, oy, ow, oh);
+   ecore_wl2_window_input_region_set(sd->wl.win, ox, oy, ow, oh);
 }
 #endif
 

-- 


Reply via email to