make entry widget call changed callbacks on "changed" again
authorMike Blumenkrantz <zmike@osg.samsung.com>
Thu, 9 Apr 2015 20:32:24 +0000 (16:32 -0400)
committerMike Blumenkrantz <zmike@osg.samsung.com>
Thu, 9 Apr 2015 20:32:24 +0000 (16:32 -0400)
this caused infinite loops before, but now I'm removing the things that looped.

fixes a lot of config dialogs

ref T2271

src/bin/e_widget_entry.c

index 05c7676..00ddd7e 100644 (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;
 }