Calling _resize function after functions that can change item size.

By: Otavio Pontes <otavio@profusion.mobi>


SVN revision: 54404
This commit is contained in:
Bruno Dilly 2010-11-10 12:38:47 +00:00
parent 2e5b0450ab
commit d2874eecec
1 changed files with 3 additions and 0 deletions

View File

@ -1342,6 +1342,7 @@ _item_label_set(Elm_Toolbar_Item *item, const char *label, const char *signal)
}
else
_elm_toolbar_item_label_update(item);
_resize(item->base.widget, NULL, NULL, NULL);
}
/**
@ -1497,6 +1498,7 @@ _elm_toolbar_item_icon_obj_set(Evas_Object *obj, Elm_Toolbar_Item *item, Evas_Ob
}
else
_elm_toolbar_item_icon_update(item);
_resize(obj, NULL, NULL, NULL);
}
/**
@ -1598,6 +1600,7 @@ elm_toolbar_item_disabled_set(Elm_Toolbar_Item *item, Eina_Bool disabled)
{
ELM_WIDGET_ITEM_WIDTYPE_CHECK_OR_RETURN(item);
_item_disable(item, disabled);
_resize(item->base.widget, NULL, NULL, NULL);
}
/**