make entry widget call changed callbacks on "changed" again

this caused infinite loops before, but now I'm removing the things that looped.

fixes a lot of config dialogs

ref T2271
This commit is contained in:
Mike Blumenkrantz 2015-04-09 16:32:24 -04:00
parent daf7f19837
commit 155a678ff4
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ e_widget_entry_add(Evas_Object *parent, char **text_location, void (*func)(void
wd->func = func;
wd->data = data;
wd->data2 = data2;
evas_object_smart_callback_add(o, "changed,user", _e_wid_changed_cb, obj);
evas_object_smart_callback_add(o, "changed", _e_wid_changed_cb, obj);
return obj;
}