explicitly hide tooltip content before deleting in case object is not able to be deleted (prevents giant tooltip image from getting stuck on canvas)

SVN revision: 61661
This commit is contained in:
Mike Blumenkrantz 2011-07-24 22:05:02 +00:00
parent 6b450cd1f8
commit 061f507101
1 changed files with 1 additions and 0 deletions

View File

@ -137,6 +137,7 @@ _elm_tooltip_content_del(Elm_Tooltip *tt)
evas_object_event_callback_del_full
(tt->content, EVAS_CALLBACK_DEL,
_elm_tooltip_content_del_cb, tt);
evas_object_hide(tt->content);
evas_object_del(tt->content);
tt->content = NULL;
}