Evas filters: Mark object as changed on data_set

This fixes the new test case.
This commit is contained in:
Jean-Philippe Andre 2016-03-02 11:37:36 +09:00
parent 2d9dc68d09
commit bafe723991
1 changed files with 9 additions and 1 deletions

View File

@ -659,10 +659,11 @@ finish:
}
EOLIAN static void
_evas_filter_efl_gfx_filter_filter_data_set(Eo *obj EINA_UNUSED, Evas_Filter_Data *pd,
_evas_filter_efl_gfx_filter_filter_data_set(Eo *eo_obj, Evas_Filter_Data *pd,
const char *name, const char *value,
Eina_Bool execute)
{
Evas_Object_Protected_Data *obj = eo_data_scope_get(eo_obj, EVAS_OBJECT_CLASS);
Evas_Filter_Data_Binding *db, *found = NULL;
Evas_Object_Filter_Data *fcow;
@ -703,6 +704,13 @@ _evas_filter_efl_gfx_filter_filter_data_set(Eo *obj EINA_UNUSED, Evas_Filter_Dat
fcow->changed = 1;
}
FCOW_END(fcow, pd);
// update object
eo_do(eo_obj, evas_filter_dirty());
evas_object_change(eo_obj, obj);
evas_object_clip_dirty(eo_obj, obj);
evas_object_coords_recalc(eo_obj, obj);
evas_object_inform_call_resize(eo_obj);
}
EOLIAN static void