not sure how this insanity made it in, spank spank to someone

SVN revision: 68608
This commit is contained in:
Mike Blumenkrantz 2012-03-02 01:12:43 +00:00
parent 2fcb323b6f
commit b4f0478492
1 changed files with 3 additions and 7 deletions

View File

@ -1942,13 +1942,9 @@ _item_realize(Elm_Gen_Item *it,
elm_widget_sub_object_add(WIDGET(it), VIEW(it));
if (it->item->flags & ELM_GENLIST_ITEM_SUBITEMS)
strncpy(buf, "tree", sizeof(buf));
else strncpy(buf, "item", sizeof(buf));
if (it->wd->compress)
strncat(buf, "_compress", sizeof(buf) - strlen(buf));
strncat(buf, "/", sizeof(buf) - strlen(buf));
strncat(buf, it->itc->item_style, sizeof(buf) - strlen(buf));
snprintf(buf, sizeof(buf), "tree%s/%s", it->wd->compress ? "_compress" : "", it->itc->item_style);
else
snprintf(buf, sizeof(buf), "item%s/%s", it->wd->compress ? "_compress" : "", it->itc->item_style);
_elm_theme_object_set(WIDGET(it), VIEW(it), "genlist", buf,
elm_widget_style_get(WIDGET(it)));