diff options
author | ChunEon Park <hermet@hermet.pe.kr> | 2012-10-24 06:15:21 +0000 |
---|---|---|
committer | ChunEon Park <hermet@hermet.pe.kr> | 2012-10-24 06:15:21 +0000 |
commit | bebeefb15537580220e8a69e75f4ce9d0f2cf7c3 (patch) | |
tree | 9e25309205ac36746c5bfd11884d89c3b1b1b470 /legacy/evas/src/lib/include/evas_private.h | |
parent | 0438eb2134a73a92bc3c08af68b95ab742d04389 (diff) | |
download | efl-bebeefb15537580220e8a69e75f4ce9d0f2cf7c3.tar.gz efl-bebeefb15537580220e8a69e75f4ce9d0f2cf7c3.tar.xz efl-bebeefb15537580220e8a69e75f4ce9d0f2cf7c3.zip |
evas/event - dont pass events when source_events is false
SVN revision: 78386
Diffstat (limited to 'legacy/evas/src/lib/include/evas_private.h')
-rw-r--r-- | legacy/evas/src/lib/include/evas_private.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/legacy/evas/src/lib/include/evas_private.h b/legacy/evas/src/lib/include/evas_private.h index d76bbea6c..6ce431a7b 100644 --- a/legacy/evas/src/lib/include/evas_private.h +++ b/legacy/evas/src/lib/include/evas_private.h @@ -595,9 +595,10 @@ struct _Evas_Object_Protected_Data Eina_List *proxies; void *surface; int w,h; - Eina_Bool is_proxy : 1; Eina_Bool redraw : 1; + Eina_Bool is_proxy : 1; Eina_Bool source_invisible : 1; + Eina_Bool source_events: 1; } proxy; // Pointer to the Evas_Object itself |