[Elm] Forgotten detail on refactor.
authorGustavo Lima Chaves <glima@profusion.mobi>
Tue, 6 Mar 2012 21:46:47 +0000 (21:46 +0000)
committerGustavo Lima Chaves <glima@profusion.mobi>
Tue, 6 Mar 2012 21:46:47 +0000 (21:46 +0000)
SVN revision: 68850

src/lib/elm_widget.c

index 6f7ce0a..09f4ec8 100644 (file)
@@ -670,7 +670,7 @@ elm_widget_theme(Evas_Object *obj)
    if (sd->hover_obj) ret &= elm_widget_theme(sd->hover_obj);
    EINA_LIST_FOREACH(sd->tooltips, l, tt) elm_tooltip_theme(tt);
    EINA_LIST_FOREACH(sd->cursors, l, cur) elm_cursor_theme(cur);
-   if (sd->theme_func) sd->theme_func(obj);
+   if (sd->theme_func) ret &= sd->theme_func(obj);
 
    return ret;
 }