efl_ui_textpath: redraw text properly.

It needs redraw since text draw depends on the obj' size.
This commit is contained in:
Hermet Park 2019-05-27 14:36:44 +09:00 committed by Mike Blumenkrantz
parent 18614bcd30
commit 680ab7b377
1 changed files with 2 additions and 0 deletions

View File

@ -682,7 +682,9 @@ _efl_ui_textpath_efl_gfx_entity_position_set(Eo *obj, Efl_Ui_Textpath_Data *pd,
EOLIAN static void
_efl_ui_textpath_efl_gfx_entity_size_set(Eo *obj, Efl_Ui_Textpath_Data *pd EINA_UNUSED, Eina_Size2D sz)
{
Eina_Size2D psize = efl_gfx_entity_size_get(obj);
efl_gfx_entity_size_set(efl_super(obj, MY_CLASS), sz);
if (psize.w != sz.w || psize.h != sz.h) _text_draw(pd);
}
EOLIAN static void