Canvas text: re-add support for tabs

Somehow this was left out. Fixes tabs, so you can now use "\t" and
press the "tab" key.
This commit is contained in:
Daniel Hirt 2017-06-22 17:59:14 +03:00
parent ba9a1b97c5
commit bb2678d403
1 changed files with 5 additions and 0 deletions

View File

@ -14405,6 +14405,11 @@ _efl_canvas_text_cursor_text_append(Efl_Text_Cursor_Cursor_Data *cur,
format = "br";
n = strlen(_NEWLINE_UTF8);
}
else if (!strncmp(_TAB_UTF8, off, strlen(_TAB_UTF8)))
{
format = "tab";
n = strlen(_TAB_UTF8);
}
if (format)
{