The event EVAS_CALLBACK_MOUSE_OUT cannot happen by creation
of below_obj.
This patch is to fix that Evas object associated with E_Client got
event of mouse_out unexpectedly because of creation of below_obj
even though cursor still remained on the window.
Change-Id: Ia5a5162c7f63f8f7578bdc1ad7bfec1485e3d387
below_obj = evas_object_rectangle_add(e_comp->evas);
EINA_SAFETY_ON_NULL_RETURN(below_obj);
+ /* This object doesn't care about mouse event. And It's also
+ * to avoid events of mouse on the E_Client. */
+ evas_object_pass_events_set(below_obj, EINA_TRUE);
+
layer = evas_object_layer_get(ec->frame);
evas_object_layer_set(below_obj, layer);
evas_object_render_op_set(below_obj, EVAS_RENDER_COPY);