efl_canvas_textblock: incorrect value returned for underline dashed gap

the function text_underline_dashed_gap_get return underline_dash_width value instead of underline_dash_gap value.
this patch return the correct value.

Reviewed-by: Xavi Artigas <xavierartigas@yahoo.es>
Differential Revision: https://phab.enlightenment.org/D11277
This commit is contained in:
abdulleh Ghujeh 2020-02-04 08:56:17 +00:00 committed by Marcel Hollerbach
parent fcdf523b98
commit ecd10c8c3d
1 changed files with 1 additions and 1 deletions

View File

@ -16711,7 +16711,7 @@ _efl_canvas_textblock_efl_text_style_text_underline_dashed_gap_set(Eo *obj EINA_
static int
_efl_canvas_textblock_efl_text_style_text_underline_dashed_gap_get(const Eo *obj EINA_UNUSED, Efl_Canvas_Textblock_Data *o EINA_UNUSED)
{
return _FMT(underline_dash_width);
return _FMT(underline_dash_gap);
}
static void